我有以下代码使用jQuery Validation插件更改默认错误消息:
{{1}}
这很好用,但是我想用英语和法语设置默认错误信息,我该怎么做?感谢
答案 0 :(得分:0)
我找到了一个可能的答案,但我不知道这是否是最好的方法。我正在检查URL中的字符串fr
以确定语言。
if (window.location.href.indexOf('/fr/')!=-1) {
jQuery.extend(jQuery.validator.messages, {
required: "Ce champ est obligatoire."
});
} else {
jQuery.extend(jQuery.validator.messages, {
required: "This field is mandatory."
});
}
显然,只有在您的网址
中有/fr/
时才会有效