刷新后清除此表单最简单的方法是什么。我尝试的方式将清除表单但不提交到数据库。其他人可以向我解释最好的方法。
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.9/jquery.validate.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($){
$("#newsletterform").validate({
debug: false,
rules: {
name: "required",
email: {
required: true,
email: true
}
},
messages: {
name: "Please let us know who you are.",
email: "A valid email will help us get in touch with you.",
},
submitHandler: function(form) {
// do other stuff for a valid form
$.post('newsletter.php', $("#newsletterform").serialize(), function(data) {
$('#results').html(data);
});
}
});
});
</script>
</head>
<div id="content">
<div id="newsletter-signup">
<h1>Sign up for News, Updates, and Offers!</h1>
<form id="newsletterform" action="" method="post">
<fieldset>
<ul>
<li>
<label for="name">Name:</label>
<input type="text" name="name" />
</li>
<li>
<label for="email">Email:</label>
<input type="text" name="email" />
</li>
<div id="results"><div>
<li>
<input type="submit" value="submit" name="signup" onclick="" />
</li>
</ul>
</fieldset>
</form>
</div>
</div>
</html>
答案 0 :(得分:66)
您可以将其添加到$.post
$( '#newsletterform' ).each(function(){
this.reset();
});
你不能只调用$( '#newsletterform' ).reset()
,因为.reset()
是一个表单对象而不是一个jquery对象,或者是那种效果。您可以在页面的一半左右阅读有关here的更多信息。
答案 1 :(得分:27)
您可以使用以下方式重置表单:
$("#myform")[0].reset();
答案 2 :(得分:5)
使用jQuery重置表单的更好方法是在表单上发送trigger
reset
个事件。
$("#btn1").click(function () {
$("form").trigger("reset");
});
答案 3 :(得分:1)
在你的post方法回调函数
中尝试这个$(':input','#myform')
.not(':button, :submit, :reset, :hidden')
.val('')
.removeAttr('checked')
.removeAttr('selected');
了解更多信息,请阅读this
答案 4 :(得分:1)
这可能会为你做到这一点。
$('input').val('').removeAttr('checked').removeAttr('selected');
答案 5 :(得分:0)
使用此jQuery重置功能可以快速重置表单字段。
$(selector)[0].reset();
答案 6 :(得分:-3)
只需将其添加到某个div或td中的Action文件中,以便它带有传入的XML对象
<script type="text/javascript">
$("#formname").resetForm();
</script>
其中“formname”是您要编辑的表单的ID