0

我正在尝试使用 jQuery 表单验证,并且我希望验证文本是阿拉伯语。

问题是,当我在 .js 文件中更改该短语时,它会显示正方形而不是阿拉伯字母。

这是我的 js 文件:

$(document).ready(function(){
    // Place ID's of all required fields here.
    required = ["name", "email", "country", "message"];
    // If using an ID other than #email or #error then replace it here
    email = $("#email");
    errornotice = $("#error");
    // The text to show up within a field when it is incorrect
    emptyerror = "Please fill out this field.";
    emailerror = "Please enter a valid e-mail.";

所以我想将最后两行“请填写...”和“请输入...”更改为阿拉伯语。

我已经尝试将此代码:添加charset=UTF-8到头部,但仍然无法正常工作。

任何想法如何解决这个问题?

4

1 回答 1

1

这也发生在我身上。

然后我意识到我的编辑器使用了另一种编码......

因此,只需将编辑器上的编码更改为 utf-8。

于 2013-08-29T22:17:30.807 回答