![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
23/08/2002, 16:06
|
![Avatar de .](http://static.forosdelweb.com/customavatars/avatar19195_1.gif) | | | Fecha de Ingreso: mayo-2002 Ubicación: Tampico
Mensajes: 906
Antigüedad: 22 años, 9 meses Puntos: 1 | |
Re: Validar select <html>
<head>
<script languaje="JavaScript">
function comprobar(){
var a=document.forma.tipo.value;
if(a==""){
alert("ingrese el tipo");
return false
}
return true
}
</script>
</head>
<form name=forma action=mm.html onsubmit="return comprobar()">
tipo:<select name=tipo>
<option value=""></option>
<option value="hola">hola</option>
<option value="hola1">hola1</option>
</select>
<input type=submit value=enviar>
</body>
</form>
</html>
intentalo así |