11/02/2003, 15:29
|
| | Fecha de Ingreso: diciembre-2002 Ubicación: USA
Mensajes: 101
Antigüedad: 22 años Puntos: 0 | |
algo como esto
script language="javascript">
<!--
function test()
{
if
((document.forms[0].elements[0].value=="")||(document.forms[0].elements[1].value==""))
{ alert("Please enter name and address before submitting");
return false;
}
else
{
return true;
}
}
//-->
</script>
<BODY>
<form method="post" action="otraweb.html" onsubmit="return test()">
<input type=text name="name"> name
<br><br>
<input type=text name="address"> address
<br><br><br>
<input type=submit value="submit">
<input type=reset value="clear">
</form>
</BODY>
pero que el alert solo salga cuando intento enviar el formulario con los dos campos vacios...
alguien me ayuda?
Última edición por blue_laser0; 11/02/2003 a las 15:33 |