所以我在我的脚本上使用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."
);
答案 0 :(得分:23)
答案 1 :(得分:6)
试试这个:
function HasArabicCharacters(text)
{
var arregex = /[\u0600-\u06FF]/;
alert(arregex.test(text));
}
有关详细信息,请查看Arabic Unicode block