jQuery ~ reset form

不能這樣寫....

$('#form').reset();



要這樣寫XD

$('#form').each(function(){
this.reset();
});


reference
http://simple.procoding.net/2008/11/22/how-to-reset-form-with-jquery/

沒有留言: