javascript正则处理控件输入数字
3个回答
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
function chkInput(input) {
var value = input.value;
var msg = document.getElementById('chkResult');
var resultChar = '';
if(/^[0-2][0-3]?$/.test(value)) {
resultChar = '√';
} else {
resultChar = '<font color="red">只能输入0-23之间的整数</font>';
}
msg.innerHTML = resultChar;
}
</script>
</head>
<body>
<input type="text" onpropertychange="chkInput(this);" oninput="chkInput(this);" /><span id="chkResult"></span>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
function chkInput(input) {
var value = input.value;
var msg = document.getElementById('chkResult');
var resultChar = '';
if(/^[0-2][0-3]?$/.test(value)) {
resultChar = '√';
} else {
resultChar = '<font color="red">只能输入0-23之间的整数</font>';
}
msg.innerHTML = resultChar;
}
</script>
</head>
<body>
<input type="text" onpropertychange="chkInput(this);" oninput="chkInput(this);" /><span id="chkResult"></span>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用正则表达式限制只能输入数字:onkeyup="value=value.replace(/[^\d] /g,'') "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))"
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<script>
function checkNum(inpt)
{
var re = /^[0-23]\d*$/;
if (!re.test(inpt.value))
{
alert("必须为23及以内正整数!");
return false;
}
}
</script>
<input type=text value="55" />
<input type=button value="点击" onclick="checkNum(this);" />
function checkNum(inpt)
{
var re = /^[0-23]\d*$/;
if (!re.test(inpt.value))
{
alert("必须为23及以内正整数!");
return false;
}
}
</script>
<input type=text value="55" />
<input type=button value="点击" onclick="checkNum(this);" />
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询