我有這段代碼在我的jQuery驗證腳本:jQuery的復位形式值+無效錯誤
resetForm: function() {
if ($.fn.resetForm)
$(this.currentForm).resetForm();
this.submitted = {};
this.prepareForm();
this.hideErrors();
this.elements().removeClass(this.settings.errorClass);
}
這正是我需要的,因此,我想用它。我試圖將它與onclick綁定,但沒有成功。我只需要一個調用此函數的按鈕/鏈接。你能在這方面給我建議嗎?
凡定義的功能?它看起來像一個選項對象的內部,這意味着它將不可訪問。 – 2012-04-04 13:56:17
這是一個默認的JQuery驗證函數(包含在jquery.validate.js中)。它應該可以在驗證器對象上調用http://docs.jquery.com/Plugins/Validation/Validator/resetForm – mattytommo 2012-04-04 14:22:13