输入框只能输入数字

下面代码可以实现输入框只能输入数字,不能输入其他东西。

<!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>

posted @ 2016-11-10 19:13  zhao.bo  阅读(131)  评论(0编辑  收藏  举报