20

所以我在我的脚本上使用 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."
);
4

2 回答 2

33

通过这个站点,您可以轻松地为多种语言创建 unicode 正则表达式:

阿拉伯:

[\u0600-\u06FF]
于 2012-10-11T19:59:29.710 回答
9

尝试这个:

function HasArabicCharacters(text)
{
    var arregex = /[\u0600-\u06FF]/;
    alert(arregex.test(text));
}

有关更多信息,请查看此处阿拉伯语 Unicode 块

于 2012-10-11T19:56:05.627 回答