做了個復雜查詢的頁面,字段太多了,填了一次,想清空挺麻煩的
$('#myform')[0].reset();
雖然reset方法可以做到一部分,但是如果你有個元素是這樣的
<input name="percent" value="50"/>
那麼點擊reset只會還原成50
於是乎,有了以下方法,網上浏覽過來,
$(':input','#myform') .not(':button, :submit, :reset, :hidden') .val('') .removeAttr('checked') .removeAttr('selected');