jQuery通过筛选元素重置表单
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery通过筛选元素重置表单相关的知识,希望对你有一定的参考价值。
http://stackoverflow.com/questions/680241/reset-form-with-jquery
$(':input','#myform') .not(':button, :submit, :reset, :hidden') .val('') .removeAttr('checked') .removeAttr('selected');
以上是关于jQuery通过筛选元素重置表单的主要内容,如果未能解决你的问题,请参考以下文章