Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是JQuery addmethod 验证的新手。所以我想在创建页面访问和特殊字符中验证一个字段并修改访问@特殊字符。
@
我的代码喜欢只创建页面需要修改页面:
$("validator").addMethod("spchar",function (value,element) { return this.oprional(element)||/^[0-9a-zA-Z_&.,]+$/i.test(value); }, "not allow" });
您想在此字段中要求特殊字符吗?如果是这样,这就是我为实现该方法所做的。
jQuery.validator.addMethod( 'ContainsAtLeastOneSpecialCharacter', function (value) { return /\W/.test(value); }, 'Your [fieldname] must contain at least one special character.' );
其中 fieldname 是一个变量。我将其用于密码字段。希望有帮助。