0

我需要验证名称只允许字母数字和下划线但不允许 jquery.pls 中的任何其他字符帮助我。

我的代码

function validateName($name) {
var Name = /^[a-z0-9\_]+$/i.test(value);
if (!NameReg.test($name)) {
    return false;
} else {
    return true;
}
}

我哪里出错了,不是孜然知道。请帮帮我。

4

1 回答 1

0
jQuery.validator.addMethod("alphanumeric", function(value, element) {
    return this.optional(element) || /^[a-z_0-9]+$/i.test(value);
}, "Enter only alpha numeric characters.");

在 .validate() 之前添加上面的代码并将类“字母数字”添加到您的 html 类中。

于 2013-01-03T07:41:37.853 回答