码迷,mamicode.com
首页 > 其他好文 > 详细

input 数字,字母汉字的限制方法(转帖)

时间:2014-10-31 18:42:16      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:ar   for   on   ef   size   as   type   用户   text   

只能输入汉字

<input onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,‘‘)" onbeforepaste="clipboardData.setData(‘text‘,clipboardData.getData(‘text‘).replace(/[^\u4E00-\u9FA5]/g,‘‘))">

只能输入全角
<input onkeyup="value=value.replace(/[^\uFF00-\uFFFF]/g,‘‘)" onbeforepaste="clipboardData.setData(‘text‘,clipboardData.getData(‘text‘).replace(/[^\uFF00-\uFFFF]/g,‘‘))">

只能输入数字
<input onkeyup="value=value.replace(/[^\d]/g,‘‘) "onbeforepaste="clipboardData.setData(‘text‘,clipboardData.getData(‘text‘).replace(/[^\d]/g,‘‘))">


只能输入英文和数字
<input onkeyup="value=value.replace(/[\W]/g,‘‘) "onbeforepaste="clipboardData.setData(‘text‘,clipboardData.getData(‘text‘).replace(/[^\d]/g,‘‘))">


默认显示
<input name="username" type="text" id="username" onFocus="this.value=‘‘;" value="用户名、手机" class="input" size="14">

input 数字,字母汉字的限制方法(转帖)

标签:ar   for   on   ef   size   as   type   用户   text   

原文地址:http://www.cnblogs.com/songyao/p/4065538.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!