21/01/2002, 11:26
|
| Colaborador | | Fecha de Ingreso: diciembre-2001 Ubicación: Curaçao (Antillas Holandesas)
Mensajes: 3.179
Antigüedad: 23 años Puntos: 38 | |
Re: Select No Modificable Prueba esto:
<html>
<head>
<script language="JavaScript">
var nOpt = 2; // valor actual
function noLoDejesCambiar(){
document.formulario.noCambies.selectedIndex = nOpt;
}
</script>
</head>
<body>
<form name="formulario">
<select name="noCambies" onchange="noLoDejesCambiar()">
<option>&nbsp;</option>
<option>Uno</option>
<option selected>Dos</option>
<option>Tres</option>
<option>Cuatro</option>
</select>
</form>
</body>
</html> |