<html>
<title>UD3_1</title>
<head>
</head>
<body>
<script type="text/javascript">
var valor=prompt('Ingrese un número con el formato (999.99):','');
var patron=/^[0-9]{3}\.[0-9]{2}$/;
if (patron.test(valor))
document.write('El valor es correcto');
else
document.write('El valor no tiene el formato correcto');
</script>
</body>
</html>
No hay comentarios:
Publicar un comentario