09/03/2005, 21:49
|
| | Fecha de Ingreso: enero-2003 Ubicación: Córdoba, Argentina
Mensajes: 1.047
Antigüedad: 22 años Puntos: 10 | |
Yo uso este script:
Código:
<html>
<head>
<SCRIPT TYPE="text/javascript">
<!--
// copyright 1999 Idocs, Inc. http://www.idocs.com
// Distribute this script freely but keep this notice in place
function numbersonly(myfield, e, dec)
{
var key;
var keychar;
if (window.event)
key = window.event.keyCode;
else if (e)
key = e.which;
else
return true;
keychar = String.fromCharCode(key);
// control keys
if ((key==null) || (key==0) || (key==8) ||
(key==9) || (key==13) || (key==27) )
return true;
// numbers
else if ((("0123456789").indexOf(keychar) > -1))
return true;
// decimal point jump
else if (dec && (keychar == "."))
{
myfield.form.elements[dec].focus();
return false;
}
else
return false;
}
//-->
</SCRIPT>
</head>
<body>
<INPUT NAME="dollar" SIZE=20 onKeyPress="return numbersonly(this, event)">
</body>
</html>
__________________ oohh... quisiera ser godines!!! |