2016-07-20 23:23:47 html表单文本框输入框内只能输入中文汉字限制代码
html输入框只能输入中文,html表单文本框输入框内只能输入中文汉字限制代码如下:
- <input name="realname" type="text" maxlength="20"
class="input_style" value=""
onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,'')"
onbeforepaste="clipboardData.setData
('text',clipboardData.getData('text').replace(/[^\u4E00-\u9FA5]/g,''))" />