jQuery清空表单内容

Posted Angel挤一挤

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery清空表单内容相关的知识,希望对你有一定的参考价值。

1 function  resertForm(){
2     $(\':input\',\'#formId\') 
3     .not(\':button, :submit, :reset, :hidden\') 
4     .val(\'\') 
5     .removeAttr(\'checked\') 
6     .removeAttr(\'selected\');
7 }
View Code

 

以上是关于jQuery清空表单内容的主要内容,如果未能解决你的问题,请参考以下文章

jQuery清空表单内容

重置只是清空表单内容吗?涉及重新查找吗

jquery multiSelect 怎么清空选择

用JS怎么清空表单

如何清空form表单里面的所有数据

jquery怎么清空div的子元素?