28/01/2002, 15:21
|
| | Fecha de Ingreso: febrero-2001
Mensajes: 292
Antigüedad: 23 años, 9 meses Puntos: 0 | |
Re: Captura de Teclado Este es un script que captura la tecla pulsada y sólo acepta a las que pertenecen a los números, en una de esas te orienta un poco.
<pre>
<html>
<head>
<title> New Document </title>
<script language="JavaScript">
<!--
var nav4 = window.Event ? true : false;
function acceptNum(evt)
{
// NOTE: Backspace = 8, Enter = 13, '0' = 48, '9' = 57
var key = nav4 ? evt.which : evt.keyCode;
alert(key);
return (key == 13);
}
//-->
</script>
</head>
<body>
<input type=text name="valor" size=12 maxlength=12 onKeyPress="return acceptNum(event)">
</body>
</html>
</pre>
<hr noshade size=1 color="#000000"><img src="http://www.gograph.com/Images-8712/ClipArt/cat03.gif" height="50" border=0 align="absmiddle"> <font size="2" face="verdana" color="#000000">bet[/CODE] |