js 限制input只能輸入數字、字母和漢字等等
js 限制input只能輸入數字小數點也不能輸入或者是只能輸入數字,能輸小數點等等,本文大致整理了一些,感興趣的朋友可以收藏下
代碼如下:
<input type="text"onKeyUp="this.value=this.value.replace(/[^.d]/g,'');if(this.value.split('.').length>2){this.value=this.value.split('.')[0]+'.'+this.value.split('.')[1]}">
1.文字框只能輸入數字代碼(小數點也不能輸入)
代碼如下:
<inputōnkeyup="this.value=this.value.replace(/D/g,'''')"ōnafterpaste="this.value=this.value.replace(/D/g,'''')">
2.只能輸入數字,能輸小數點.
代碼如下:
<inputōnkeyup="if(isNaN(value))execCommand(''undo'')"ōnafterpaste="if(isNaN(value))execCommand(''undo'')">
<input name=txt1ōnchange="if(/D/.test(this.value)){alert(''只能輸入數字'');this.value='''';}">
3.數字和小數點方法二
代碼如下:
<input type=text t_value="" o_value=""ōnkeypress="if(!this.value.match(/^[+-]?d*?.?d*?$/))this.value=this.t_value;elsethis.t_value=this.value;if(this.value.match(/^(?:[+-]?d+(?:.d+)?)?$/))this.o_value=this.value"ōnkeyup="if(!this.value.match(/^[+-]?d*?.?d*?$/))this.value=this.t_value;elsethis.t_value=this.value;if(this.value.match(/^(?:[+-]?d+(?:.d+)?)?$/))this.o_value=this.value"ōnblur="if(!this.value.match(/^(?:[+-]?d+(?:.d+)?|.d*?)?$/))this.value=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 ōnkeyup="value=value.replace(/[d]/g,'''')"onbeforepaste="clipboardData.setData(''text'',clipboardData.getData(''text'')
.replace(/[d]/g,''''))"maxlength=10 name="Numbers">
5.只能輸入英文字母和數字,不能輸入中文
複製代碼 代碼如下:
<inputōnkeyup="value=value.replace(/[^w./]/ig,'''')">
6.只能輸入數字和英文
代碼如下:
<inputōnKeyUp="value=value.replace(/[^d|chun]/g,'''')">
7.小數點後只能有最多兩位(數字,中文都可輸入),不能輸入字母和運算子號:
代碼如下:
<inputōnKeyPress="if((event.keyCode<48 ||event.keyCode>57) &&event.keyCode!=46 ||/.dd$/.test(value))event.returnValue=false">
8.小數點後只能有最多兩位(數字,字母,中文都可輸入),可以輸入運算子號:
代碼如下:
<inputōnkeyup="this.value=this.value.replace(/^(-)*(d+).(dd).*$/,''$1$2.$3'')">