Bootstrap

用正则表达式进行input框的限制输入

1.限制input输入框只能输入大小写字母、数字、下划线的正则表达式:

用户名< input type="text" placeholder="只包含数字字母下划线" onkeyup="this.value=this.value.replace(/[^\w_]/g,'');"> 

2.限制input输入框只能输入小写字母、数字、下划线的正则表达式:

用户名<input type="text" placeholder="只包含数字小字母下划线"  onkeyup="this.value=this.value.replace(/[^a-z0-9_]/g,'');"> 


3.限制input输入框只能输入中文的正则表达式:

用户名<input type="text" placeholder="只包含中文"  onkeyup="this.value=this.value.replace(/[^\u4e00-\u9fa5]/g,'')">  


4.限制input输入框只能输入数字的正则表达式:

用户名<input type="text" placeholder="只包含数字"  onkeyup="this.value=this.value.replace(/\D/g,'')">  


5.限制input输入框只能输入英文的正则表达式:

用户名<input type="text" placeholder="只包含英文字母"  onkeyup="this.value=this.value.replace(/[^a-zA-Z]/g,'')">


6.限制input输入框只能输入中文、数字、英文的正则表达式:

用户名<input type="text" placeholder="只包含中文数字字母"  onkeyup="value=value.replace(/[^\w\u4E00-\u9FA5]/g, '')">  


7.限制input输入框只能输入数字和字母的正则表达式:

用户名<input type="text" placeholder="只包含数字字母"  onKeyUp="value=value.replace(/[\W]/g,'')">  


8.限制input输入框只能输入英文字母和数字,不能输入中文的正则表达式:

用户名<input type="text" placeholder="只包含英文字母和数字"  onkeyup="value=value.replace(/[^\w\.\/]/ig,'')">


9.限制input输入框小数点后只能有最多两位(数字,中文都可输入),不能输入字母和运算符号的正则表达式:

用户名<input type="text" placeholder="最多两位小数"  onKeyPress="if((event.keyCode<48 || event.keyCode>57) && event.keyCode!=46 || /\.\d\d$/.test(value))event.returnValue=false">


10.不可输入中文

用户名<input type="text" placeholder="不能输入中文"   onkeyup="this.value=this.value.replace(/[\u4E00-\u9FA5]/g,'')">


11.不可输入空格 

用户名 <input type="text" placeholder="不能输入空格"  onkeyup="onkeyup="value = value.replace(/\s+/g, '')">


 

;