Jquery表单清空

虽然reset方法可以做到一部分,但是如果你有个元素是这样的 

<input name="percent" value="50"/>  

 

那么点击reset只会还原成50 


于是乎,有了以下方法,网上浏览过来, 

$(':input','#myform')  
 .not(':button, :submit, :reset, :hidden')  
 .val('')  
 .removeAttr('checked')  
 .removeAttr('selected');  

很强大,包括了所有的情况 

posted @ 2016-01-01 10:46  FrankHu  阅读(1162)  评论(0编辑  收藏  举报