codice:
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Example</title>
<script type="text/javascript">
function numbersOnly(oToCheckField, oKeyEvent) {
var nChar = (oKeyEvent || /* IE */ window.event || { charCode: 0 }).charCode;
return nChar === 0 || /\d/.test(String.fromCharCode(nChar));
}
</script>
</head>
<body>
<form name="myForm">
Enter numbers only: <input type="text" name="myInput" onkeypress="return(numbersOnly(this, event));" onpaste="return(false);" /></p>
</form>
</body>
</html>