05/09/2002, 22:46
|
| | Fecha de Ingreso: junio-2002 Ubicación: Buenos Aires, Argentina
Mensajes: 876
Antigüedad: 22 años, 7 meses Puntos: 0 | |
Re: URGENTE: script me cierra navegador!!!
Código:
<script language="JavaScript">
function validarForma()
{
if (document.form1.dia.value == "Día")
{
window.alert("Debes seleccionar tu día de nacimiento");
return false;
}
if (document.form1.mes.value == "Mes")
{
window.alert("Debes seleccionar tu mes de nacimiento");
return false;
}
if (document.form1.anio.value == "Año")
{
window.alert("Debes seleccionar tu año de nacimiento");
return false;
}
var dia = document.form1.dia[document.form1.dia.selectedIndex].value ;
var mes = document.form1.mes[document.form1.mes.selectedIndex].value ;
var anio = document.form1.anio[document.form1.anio.selectedIndex].value ;
if ((validaFecha(dia,mes,anio))== false)
{
window.alert('La fecha de nacimiento no es válida');
return false;
}
if (document.form1.sexo.value == "")
{
window.alert("Debes seleccionar tu sexo");
return false;
}
if (document.form1.pais.value == "")
{
window.alert("Debes seleccionar tu país");
return false;
}
if ((document.form1.provincia.value == "")&&(document.form1.pais.value=="Argentina"))
{
window.alert("Debes seleccionar tu provincia");
return false;
}
|