form表单的reset

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

  

原文地址:https://www.cnblogs.com/haitao-fan/p/3967390.html