我想使用jQuery驗證插件,然後通過ajax提交我的表單,但我錯過了一些東西。任何人有任何見解?jQuery ajax提交驗證
$('#theForm').validate({
focusInvalid: false,
invalidHandler: function() {
$('#message').addClass('error').html('Please fill out all necessary fields.').slideDown();
},
submitHandler: function (form) {
$('#message').removeClass('error').html('Saving info.').slideDown();
$.post(form.action, $(form).serialize(), function() {
$('#message').removeClass('error').html('Saving complete.').slideUp(3500);
});
}
});
$ .post()可以將查詢字符串作爲第二個參數。來自http://api.jquery.com/jQuery.post/的示例: $ .post(「test.php」,$(「#testform」)。serialize()); 這不是問題。 – 2010-01-16 19:30:45