jquery 如何限制 input框 只能输入正整数
展开全部
<html>
<head>
<title>只能输入正整数</title>
</head>
<body>
兑换数量:<input type="text" ID="txtNumber" Width="50px" onkeyup="if(this.value.length==1){this.value=this.value.replace(/[^1-9]/g,'')}else{this.value=this.value.replace(/\D/g,'')}"
onafterpaste="if(this.value.length==1){this.value=this.value.replace(/[^1-9]/g,'0')}else{this.value=this.value.replace(/\D/g,'')}" />
<input type="button" ID="btn1" value=" 兑 换 " OnClick='return confirm("确定兑换?");' />
</body>
</html>
<head>
<title>只能输入正整数</title>
</head>
<body>
兑换数量:<input type="text" ID="txtNumber" Width="50px" onkeyup="if(this.value.length==1){this.value=this.value.replace(/[^1-9]/g,'')}else{this.value=this.value.replace(/\D/g,'')}"
onafterpaste="if(this.value.length==1){this.value=this.value.replace(/[^1-9]/g,'0')}else{this.value=this.value.replace(/\D/g,'')}" />
<input type="button" ID="btn1" value=" 兑 换 " OnClick='return confirm("确定兑换?");' />
</body>
</html>
展开全部
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>表单</title>
<script src="jquery-1.8.0.min.js"></script><!--测试时请先引入本地jq库-->
<script>
$(function(){
var inp = $('#inp');
inp.blur(function(){
var inpVal = inp.val();
if(!isNaN(inpVal)&&inpVal>0){
alert(inpVal)
}else{
alert('请输入正整数')
}
})
})
</script>
</head>
<body>
<input type="text" id="inp">
</body>
</html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>表单</title>
<script src="jquery-1.8.0.min.js"></script><!--测试时请先引入本地jq库-->
<script>
$(function(){
var inp = $('#inp');
inp.blur(function(){
var inpVal = inp.val();
if(!isNaN(inpVal)&&inpVal>0){
alert(inpVal)
}else{
alert('请输入正整数')
}
})
})
</script>
</head>
<body>
<input type="text" id="inp">
</body>
</html>
追问
大神,谢谢您的热心解答!
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用enevt.keyCode可以不?keyCode在96到105值是数字,不知道你想怎么做?还是想用正则表达式写?
追问
大神,要正则来验证啊。
谢谢您的热心解答!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询