17/11/2004, 16:39
|
| | Fecha de Ingreso: octubre-2004 Ubicación: España
Mensajes: 894
Antigüedad: 20 años, 2 meses Puntos: 3 | |
Hola, hporras
Prueba algo así:
<input type="text" onBlur="verifica(this.value)" etc
con
<script>
function verificaEntero(tx) {
if ( parseInt(tx)==tx && tx>=0 && tx<=1000 ) { return true }
else { return false }
}
</script>
__________________ Angel :cool: |