
16/07/2005, 16:59
|
 | | | Fecha de Ingreso: junio-2004 Ubicación: Acá
Mensajes: 1.166
Antigüedad: 20 años, 8 meses Puntos: 4 | |
function validar()
{
if (/^[0-9]{5}$/i.test(document.getElementById('valor').value))
{
alert('incorrecto')
}
}
<input type="text" id="valor" name="valor"> |