Ver Mensaje Individual
  #8 (permalink)  
Antiguo 18/11/2003, 13:26
Avatar de Kaopectate
Kaopectate
Colaborador
 
Fecha de Ingreso: diciembre-2001
Ubicación: Curaçao (Antillas Holandesas)
Mensajes: 3.179
Antigüedad: 23 años
Puntos: 38
Pues hagamos una prueba:

Pasa como parámetro a tu función el tag form. Te lo adapto en mi ejemplo:

Código PHP:
<html>
 <
head>
  <
script language="JavaScript">
   function 
desactivado(oForm){
    
with (oForm){
     
nombre.disabled true;
     
paterno.disabled true;
     
materno.disabled true;
     
parentesco.disabled true;
     
parentesco1.disabled true;
     
sexo.disabled true;
    }
   }
  
</script>
 </head>
 <body onload="desactivado(document.composicion)">
  <form name="composicion">
   <input type="text" name="nombre">
   <input type="text" name="paterno">
   <input type="text" name="materno">
   <input type="text" name="parentesco">
   <input type="text" name="parentesco1">
   <input type="text" name="sexo">
  </form>
 </body>
</html> 
Saludos.