首页 > 代码库 > html5 Iput限制输入
html5 Iput限制输入
JS判断只能是数字和小数点
1.文本框只能输入数字代码(小数点也不能输入)
<input onkeyup="this.value=http://www.mamicode.com/this.value.replace(/D/g,‘‘)" onafterpaste="this.value=http://www.mamicode.com/this.value.replace(/D/g,‘‘)">
2.只能输入数字,能输小数点.
<input onkeyup="if(isNaN(value))execCommand(‘undo‘)" onafterpaste="if(isNaN(value))execCommand(‘undo‘)"> <input name=txt1 onchange="if(/\D/.test(this.value)){alert(‘只能输入数字‘);this.value=http://www.mamicode.com/‘‘;}">
3.数字和小数点方法二
<input type=text t_value="" o_value="" onkeypress="if(!this.value.match(/^[\+\-]?\d*?\.?\d*?$/))this.value=http://www.mamicode.com/this.t_value;else this.t_value=this.value;if(this.value.match(/^(?:[\+\-]?\d+(?:\.\d+)?)?$/))this.o_value=this.value" onkeyup="if(!this.value.match(/^[\+\-]?\d*?\.?\d*?$/))this.value=http://www.mamicode.com/this.t_value;else this.t_value=this.value;if(this.value.match(/^(?:[\+\-]?\d+(?:\.\d+)?)?$/))this.o_value=this.value" onblur="if(!this.value.match(/^(?:[\+\-]?\d+(?:\.\d+)?|\.\d*?)?$/))this.value=http://www.mamicode.com/this.o_value;else{if(this.value.match(/^/d+$/))this.value=0+this.value;if(this.value.match(/^/.$/))this.value=0;this.o_value=this.value}">
4.只能输入字母和汉字
<input onkeyup="value=http://www.mamicode.com/value.replace(/[/d]/g,‘‘)"onbeforepaste="clipboardData.setData(‘text‘,clipboardData.getData(‘text‘).replace(/[\d]/g,‘‘))" maxlength=10 name="Numbers">
5.只能输入英文字母和数字,不能输入中文
<input onkeyup="value=http://www.mamicode.com/value.replace(/[^/w/]/ig,‘‘)">
6.只能输入数字和英文<font color="Red">chun</font>
<input onKeyUp="value=http://www.mamicode.com/value.replace(/[^/d|chun]/g,‘‘)">
7.小数点后只能有最多两位(数字,中文都可输入),不能输入字母和运算符号:
<input onKeyPress="if((event.keyCode<48 || event.keyCode>57) && event.keyCode!=46 || /\.\d\d$/.test(value))event.returnValue=http://www.mamicode.com/false">
8.小数点后只能有最多两位(数字,字母,中文都可输入),可以输入运算符号
<input onkeyup="this.value=http://www.mamicode.com/this.value.replace(/^(/-)*(/d+)/.(/d/d).*$/,‘$1$2.$3‘)">
9.输入中文
<input type="text" onkeyup="this.value=http://www.mamicode.com/this.value.replace(/[^/u4e00-/u9fa5]/g,‘‘)">
10.输入数字:
<input type="text" onkeyup="this.value=http://www.mamicode.com/this.value.replace(/D/g,‘‘)">
11.输入英文
<input type="text" onkeyup="this.value=http://www.mamicode.com/this.value.replace(/[^a-zA-Z]/g,‘‘)">
12.三合一
<input onkeyup="value=http://www.mamicode.com/value.replace(/[^/w/u4E00-/u9FA5]/g, ‘‘)">
13.只输入数字和字母
<INPUT class=input maxLength=12 size=15 name=username id="username" onKeyUp="value=http://www.mamicode.com/value.replace(/[/W]/g,‘‘)">
14.除了英文的标点符号以为 其他的人都可以中文,英文字母,数字,中文标点
<input type="text" onkeyup="this.value=http://www.mamicode.com/this.value.replace(/^[^!@#$%^&*()-=+]/g,‘‘)">
html5 Iput限制输入
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。