08/09/2004, 01:25
|
| Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 22 años, 11 meses Puntos: 61 | |
Casi aciertas, es con readOnly y true:
document.formulario.sApell.readOnly=true;
Mira un ejemplo: Código HTML: <html>
<head>
<title>Untitled</title>
</head>
<body>
<form name="formulario">
<input
type="text"
name="pepe"
readonly="readonly"
value="pepe" />
<br /><br />
<input
type="Checkbox"
onclick="document.forms['formulario'].elements['pepe'].readOnly=!this.checked"
/>Hacer escribible
</form>
</body>
</html>
__________________ Cómo escribir
No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia. |