jquery 密码中仅包含字母或数字

发布于 2024-08-27 03:08:49 字数 212 浏览 6 评论 0原文

我找到了这个用于字母数字检查的代码(“字母、数字、空格或下划线”),但我想进行更改,这样我就只能写字母或数字。谁能告诉我如何更改此代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

以往的大感动 2024-09-03 03:08:49

这应该可以做到:

function(value, element)
{
    return this.optional(element) || /^[a-zA-Z0-9]+$/i.test(value);
}

编辑:好的,不知道为什么我不能很好地获得该格式,但重要的部分是将 \w 替换为字符类([] 中的位)。

This should do it:

function(value, element)
{
    return this.optional(element) || /^[a-zA-Z0-9]+$/i.test(value);
}

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 []).

生死何惧 2024-09-03 03:08:49

我已经使用这个多年了:

http://www.itgroup.com.ph/alphanumeric/

看看

I've used this for years now :

http://www.itgroup.com.ph/alphanumeric/

Take a look

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文