所以我在我的脚本上使用 jquery 验证只允许某些字符。我已经请求允许脚本也使用阿拉伯字符。我该怎么做?
这是我当前的代码:
$.validator.addMethod(
"legalname",
function(value, element) {
return this.optional(element) || /^[a-zA-Z0-9()._\-\s]+$/.test(value);
},
"Illegal character. Only points, spaces, underscores or dashes are allowed."
);