小編這次要給大家分享的是詳解jquery.validate自定義驗(yàn)證用法,文章內(nèi)容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。
創(chuàng)新互聯(lián)10多年成都定制網(wǎng)頁設(shè)計(jì)服務(wù);為您提供網(wǎng)站建設(shè),網(wǎng)站制作,網(wǎng)頁設(shè)計(jì)及高端網(wǎng)站定制服務(wù),成都定制網(wǎng)頁設(shè)計(jì)及推廣,對成都假山制作等多個方面擁有豐富的網(wǎng)站制作經(jīng)驗(yàn)的網(wǎng)站建設(shè)公司。
本文實(shí)例講述了jquery.validate自定義驗(yàn)證用法。分享給大家供大家參考,具體如下:
errorClass: "unchecked", validClass: "checked", errorElement: "span", errorPlacement: function (error, element) { if (element.parent().find("span[for=""" + element.attr("id") + """]") != null) { element.parent().find("span[for=""" + element.attr("id") + """]").remove(); } error.appendTo(element.parent()); }, success: function (label) { label.removeClass("unchecked").addClass("checked"); },
input.unchecked{border: 1px #E6594E dotted;} span.checked { padding: 3px 5px 3px 21px;margin-left: 10px;margin-top: 0px;margin-bottom: 3px;adisplay: inline; height: 25px;line-height: 1px;font-size: 12px;aborder: 1px solid #E6594E;white-space: nowrap; text-align: left;color: #E6594E;background:url("/Common/Sys/Cfg/images/checked.gif") no-repeat 3px;/* #FCEAE8 */ } span.unchecked { padding: 3px 5px 3px 21px;margin-left: 10px;margin-top: 0px;margin-bottom: 3px;adisplay: inline; height: 25px;line-height: 1px;font-size: 12px;border: 1px solid #E6594E;white-space: nowrap; text-align: left;color: #E6594E;background: #FCEAE8 url("/Common/Sys/Cfg/images/unchecked.gif") no-repeat 3px; }
errorContainer: container, errorLabelContainer: $("ul", container), wrapper: ""li"", meta: "validate", errorClass: "unchecked", validClass: "checked",
input.unchecked{border: 1px #E6594E dotted;} span.checked { padding: 3px 5px 3px 21px;margin-left: 10px;margin-top: 0px;margin-bottom: 3px;adisplay: inline; height: 25px;line-height: 1px;font-size: 12px;aborder: 1px solid #E6594E;white-space: nowrap; text-align: left;color: #E6594E;background:url("/Common/Sys/Cfg/images/checked.gif") no-repeat 3px;/* #FCEAE8 */ } span.unchecked { padding: 3px 5px 3px 21px;margin-left: 10px;margin-top: 0px;margin-bottom: 3px;adisplay: inline; height: 25px;line-height: 1px;font-size: 12px;border: 1px solid #E6594E;white-space: nowrap; text-align: left;color: #E6594E;background: #FCEAE8 url("/Common/Sys/Cfg/images/unchecked.gif") no-repeat 3px; } div.container { background-color: #eee; border: 1px solid red; margin: 5px; padding: 5px; } div.container ol li { list-style-type: disc; margin-left: 20px; } div.container { display: none } .container label.error { display: inline; }
There are serious errors in your form submission, please see below for details.
看完這篇關(guān)于詳解jquery.validate自定義驗(yàn)證用法的文章,如果覺得文章內(nèi)容寫得不錯的話,可以把它分享出去給更多人看到。