Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/08/2003, 03:56
tom2000
 
Fecha de Ingreso: julio-2003
Mensajes: 164
Antigüedad: 21 años, 5 meses
Puntos: 0
Vale, antes lo busco antes lo digo. Lo conseguí, lo dejé así, simplemente insertar && key=44

<head>

<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;
return (key <= 13 || (key >= 48 && key <= 57 && key=44));
}
//-->
</script>

</head>
<body>

<p><input type="text" name="valor" size="12" maxlength="12"
onKeyPress="return acceptNum(event)"></p>

</body>