input框怎么设置onKeypress事件只能输入数字,能兼容火狐,IE9的
1个回答
展开全部
下面这个就可以
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RunJS</title>
</head>
<body>
<input type="text" onInput ="keypress(this)" />
</body>
</body>
</html>
// scripts
function keypress(_this){
_this.value = _this.value.replace(/[^0-9]/g, '');
}
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RunJS</title>
</head>
<body>
<input type="text" onInput ="keypress(this)" />
</body>
</body>
</html>
// scripts
function keypress(_this){
_this.value = _this.value.replace(/[^0-9]/g, '');
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询