输入框只能输入数字
下面代码可以实现输入框只能输入数字,不能输入其他东西。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script>
window.onload = function(){
var oTxt = document.getElementById('txt');
oTxt.oninput = function(){
oTxt.value = oTxt.value.replace(/\D/,'');
}
}
</script>
</head>
<body>
<input type="text" name="" id="txt"/>
</body>
</html>