Caja De Texto Que Solo Permite El Ingreso De Numeros


<html>
<head>
<script type="text/javascript">
function validacion(f)  {
if (isNaN(f.campo_a_validar.value)) {
alert("Error:\nEste campo debe tener sólo números.");
f.campo_a_validar.focus();
return (false);
 }
}
</script>
</head>
<body>
<form method="post" action="" onsubmit="return validacion(this)">
Escriba el numero: <input type="text" name="campo_a_validar" value=""><br>
</form>
</body>
</html>

0 Response to Caja De Texto Que Solo Permite El Ingreso De Numeros

Publicar un comentario