我正在尝试使用 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
到头部,但仍然无法正常工作。
任何想法如何解决这个问题?