Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/07/2002, 23:11
Taurus
 
Fecha de Ingreso: junio-2002
Mensajes: 78
Antigüedad: 22 años, 6 meses
Puntos: 0
Re: Mascara para campo numerico

Este script, hace que solo ingeresen numeros, para lo demas, creo debes investigar un poco


<html>
<head>
</head>
<body>

<script language="javascript">
var isIE = document.all?true:false;
var isNS = document.layers?true:false;
function onlyDigits(e) {
var _ret = true;
if (isIE) {
if (window.event.keyCode < 46 || window.event.keyCode > 57) {
window.event.keyCode = 0;
_ret = false;
}
}
if (isNS) {
if (e.which < 46 || e.which > 57) {
e.which = 0;
_ret = false;
}
}
return (_ret);
}
</script>
<form name=exf1>
<input type=text name="tinput">
</form>
<script>
if (isNS) document.captureEvents(Event.KEYPRESS);
document.onkeypress=onlyDigits;
</script>


</body>
</html>

:)