首页 > 代码库 > input 数字,字母汉字的限制方法(转帖)
input 数字,字母汉字的限制方法(转帖)
只能输入汉字
<input onkeyup="value=http://www.mamicode.com/value.replace(/[^/u4E00-/u9FA5]/g,‘‘)" onbeforepaste="clipboardData.setData(‘text‘,clipboardData.getData(‘text‘).replace(/[^\u4E00-\u9FA5]/g,‘‘))">
只能输入全角
<input onkeyup="value=http://www.mamicode.com/value.replace(/[^/uFF00-/uFFFF]/g,‘‘)" onbeforepaste="clipboardData.setData(‘text‘,clipboardData.getData(‘text‘).replace(/[^\uFF00-\uFFFF]/g,‘‘))">
只能输入数字
<input onkeyup="value=http://www.mamicode.com/value.replace(/[^/d]/g,‘‘)"onbeforepaste="clipboardData.setData(‘text‘,clipboardData.getData(‘text‘).replace(/[^\d]/g,‘‘))">
只能输入英文和数字
<input onkeyup="value=http://www.mamicode.com/value.replace(/[/W]/g,‘‘)"onbeforepaste="clipboardData.setData(‘text‘,clipboardData.getData(‘text‘).replace(/[^\d]/g,‘‘))">
默认显示
<input name="username" type="text" id="username" onFocus="this.value=http://www.mamicode.com/‘‘;" value="http://www.mamicode.com/用户名、手机" class="input" size="14">
input 数字,字母汉字的限制方法(转帖)