jQuery重置表单
Posted 余小果
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery重置表单相关的知识,希望对你有一定的参考价值。
一、
$(‘#reset‘).click(function() { $(‘#form‘)[0].reset(); });
$("#form")取得id为form的jQuery对象
$("#form")[0]可以把这个jquery对象转成html对象
后面的.reset()方法不是jquery对象的方法,但是是html对象的方法。
二、
$(function(){ $("#reset").click(function(){ $(‘:input‘,‘#form‘) .not(‘:button,:submit,:reset,:hidden‘) .val(‘‘) .removeAttr(‘checked‘) .removeAttr(‘selected‘); }); });
以上是关于jQuery重置表单的主要内容,如果未能解决你的问题,请参考以下文章