jQueryvalidation插件:使用来自xml-file的自定义错误消息
嘿我试图将我的错误消息外包到xml-File中,因此更改它们或为新元素添加一些新消息变得更容易。
我的xml文件如下所示:
name Text bei Pflicht. email Text bei falschem Format postleitzahl Required plz Bitte Postleitzahl angeben.
并且应该为每个元素标记编写结果函数,如下所示:例如:
jQuery(".validation").rules("add",{ messages:{ name :{ required: "Text bei Pflicht", email: "Text bei falschem Format" } postleitzahl:{ required: "Required.", plz: "Bitte Postleitzahl angeben." } });
我怎样才能做到这一点?
提前致谢。
var myXML; $.ajax({ type: "GET", url: "message.xml", dataType: "xml", success: function(xml) { alert($(xml).find('element')); } }); var nm = returnValue("name"); var frm = returnValue("format"); jQuery(".validation").rules("add",{ messages:{ nm:{ required: returnValue("pflicht"), frm : returnValue("formattext") } } }) function returnValue(_tag){ return myXML.find(_tag).text(); }