06/06/2004, 08:16
|
| | Fecha de Ingreso: mayo-2004 Ubicación: Barcelona
Mensajes: 200
Antigüedad: 20 años, 6 meses Puntos: 0 | |
jooer no me sale...
nose q hago mal pero no me va...
<html>
<head>
<title>Incidencias</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" type="text/JavaScript">
function validar()
{
// Array con todos los elementos del formulario
camposTexto = formulario.elements;
for (x=0; x < camposTexto .length; x++)
{
if (camposTexto [x].value == '' && camposTexto [x].type=='text')
{
alert("Debe llenar todos los campos ");
return false;
}
}
// Verifica que el campo Ip sea puros numeros
var checkOK = "0123456789.";
var checkStr = formulario.Ip.value;
var allValid = true;
var decPoints = 0;
var allNum = "";
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)
{
if (ch == checkOK.charAt(j))
{
break;
}
if (j == checkOK.length)
{
allValid = false;
break;
}
}
allNum += ch;
}
if (!allValid)
{
alert("Escriba sólo dígitos en el campo Ip");
formulario.Ip.focus();
return (false);
}
}
</script>
</head>
<body>
<form name="formulario" onSubmit="return validar();" action="insert.phtml" method="POST">
<li>IP *</li>
<input name="Ip" type="text">
<p align="center">
<INPUT TYPE="submit" NAME="accion" VALUE="Grabar"></center>
</p>
</form>
</body>
</html>
q rabia.... de todas formas muchas gracias!!! |