的onsubmit我想火的fancybox彈出jQuery驗證形式 - 的onsubmit火的fancybox窗口
我只需要顯示的fancybox彈出一次的形式進行驗證(jQuery驗證使用)
它似乎彈出的fancybox彈出只有當表格填寫不正確!
http://gloss-hair.com/old/owl/OWLFORM.html
我不知道如何加載只有一次的形式進行驗證彈出的fancybox功能:
<script type="text/javascript">
$().ready(function() {
// validate the competition form when it is submitted
$("#ie9_competition").validate({
errorPlacement: function (error, element) {
if (element.is(":checkbox")) {
error.appendTo(element.closest('div'));
}
else {
error.insertAfter(element.parent().find("label"));
}
},
rules: {
sEmail: {
required: true,
email: true
},
}
});
});
<script type="text/javascript">
$(document).ready(function() {
$(".fancybox4").fancybox({
'hideOnContentClick': true
});
});
</script>
多數民衆贊成在此非常感謝這工作的一種享受 - 我最初添加它在上面 - 但我有一些語法問題(括號或缺少的東西)。令人敬畏的歡呼再次 – Jai 2012-04-10 08:16:32
嗯onsubmit也需要清除表單(以及彈出的fancybox消息工作)。你知道我可以如何清除表單一旦驗證,並提交onsubmit前進 - 再次感謝 – Jai 2012-04-11 17:51:56
@JaimieLisaStow:您可以使用「resetForm」重置驗證錯誤消息,可能必須清除所有字段值。 – 2012-04-12 03:51:19