試圖一起使用jQuery Form Plugin和jQuery Validate plugin,但表單將使用AJAX提交,即使所需字段爲空。這裏是我的代碼:jQuery表單插件和jQuery驗證
// prepare the form when the DOM is ready
$(document).ready(function() {
// bind form using ajaxForm
$('#contact-form').ajaxForm({
// target identifies the element(s) to update with the server response
target: '#ajax-success',
// success identifies the function to invoke when the server response
// has been received; here we apply a fade-in effect to the new content
success: function() {
$('#contact-form-wrapper').hide();
$('#ajax-success').fadeIn('slow');
}
});
});
好的 - 對不起,有點新使用堆棧溢出。將開始接受。我只是想弄清楚在submitHandler函數中放置的位置。 – user1093150 2012-04-23 15:51:43