只能输入纯数字,如:0123456789
<input type="text" oninput="this.value=this.value.replace(/[^0-9]+/,'')" />
<input type="text" oninput="this.value=this.value.replace(/[^\d]/g,'')" />
只能输入数字和“-”号,如:-1234 或者 2021-4-16
<input type="text" oninput="this.value=this.value.replace(/[^0-9-]+/,'')" />
<input type="text" onkeyup="this.value=this.value.replace(/[^\d-]/g,'')" />
<input type="text" onkeyup="(this.v=function(){this.value=this.value.replace(/[^0-9-]+/,'');}).call(this)" onblur="this.v();" />
只能输入数字和“.”号,如:12.34
<input type="text" onkeyup="this.value=this.value.replace(/[^\d.]/g,'')" />
<input type="text" onkeyup="value=value.replace(/[^\d{1,}\.\d{1,}|\d{1,}]/g,'')" />
只允许输入正整数,如:123456789
<input type='text' onkeyup="this.value=this.value.replace(/^(0+)|[^\d]+/g,'')" />
只能输入数字和英文,如:abc123EFG456
<input onKeyUp="value=value.replace(/[^\d|chun]/g,'')">
<input onKeyUp="value=value.replace(/[^\w\.\/]/ig,'')">
<input onKeyUp="value=value.replace(/[\W]/g,'')">
只能输入英文字母,如:aBcDefGH
<input type="text" onKeyUp="this.value=this.value.replace(/[^a-zA-Z]/g,'')">
允许输入大小写字母、数字、下划线,如:abc_123_
<input type="text" onkeyup="this.value=this.value.replace(/[^\w_]/g,'');">
只能输入中文,如:赵钱孙李
<input type="text" onKeyUp="this.value=this.value.replace(/[^\u4e00-\u9fa5]/g,'')">
允许输入中文、数字、英文,如:甲乙丙123abcXYZ
<input onkeyup="value=value.replace(/[^\w\u4E00-\u9FA5]/g,'')" />