jquery 密码中仅包含字母或数字
我找到了这个用于字母数字检查的代码(“字母、数字、空格或下划线”),但我想进行更改,这样我就只能写字母或数字。谁能告诉我如何更改此代码:
function(value, element) {
return this.optional(element) || /^\w+$/i.test(value);}
谢谢!
格雷格
I found this code for alphanumeric check ("Letters, numbers, spaces or underscores") but I want to change so I will be able to write only letters or numbers. Can anyone tell me how to change this code:
function(value, element) {
return this.optional(element) || /^\w+$/i.test(value);}
Thanks!
Greg
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可以做到:
编辑:好的,不不知道为什么我不能很好地获得该格式,但重要的部分是将 \w 替换为字符类([] 中的位)。
This should do it:
EDIT: OK, no idea why I can't get that formatting nicely, but the important part is replacing the \w with the character class (the bit in []).
我已经使用这个多年了:
http://www.itgroup.com.ph/alphanumeric/
看看
I've used this for years now :
http://www.itgroup.com.ph/alphanumeric/
Take a look