标签:
$(":reset").click(function(){
//第一种:直接把值赋为空 $("#form1").val("");
//第二种:通过调用 DOM 中的reset方法来重置表单 $("#form1"[0].reset(); });
我的表单:
<form id="form1">
<input type="reset" />
</form>
Jquery中的重置
原文地址:http://www.cnblogs.com/ljn-/p/4854636.html