14/05/2004, 09:19
|
| | Fecha de Ingreso: mayo-2004
Mensajes: 75
Antigüedad: 20 años, 6 meses Puntos: 2 | |
Un ejemplo sencillo de como poder cambiar un texto dinamicamente.
He puesto un textfield con un texto al lado que cambia cuando
el textfield pierde el foco:
<html>
<script language="javaScript">
function comprobarCampo(){
var miLabel = document.getElementById("miLabel");
miLabel.innerText = "nuevo texto";
}
</script>
<body>
<form name="formulario">
<input type="text" onblur="comprobarCampo()"/>
<label id="miLabel">Texto</label>
</form>
</body>
</html> |