gpt4 book ai didi

jquery - 提交表单后清除表单

转载 作者:行者123 更新时间:2023-11-30 23:42:31 27 4
gpt4 key购买 nike

Possible Duplicate:
Resetting a multi-stage form with jQuery

提交表单后,另一页的响应将打印到#GameStorySys。但输入到表单中的值仍然保留在那里。提交表单后,表单值是否可能消失(但表单仍应保留)?

$("[name='GameStoryForm']").click(function() { 
$.ajax({
type: "POST",
data: $("#GameStoryForm").serialize(),
url: "content/commentary/index.cs.asp?Process=EditLiveCommentaryStory&CommentaryID=<%=Request.QueryString("CommentaryID")%>",
success: function(output) {
$('#GameStorySys').html(output);
},
error: function(output) {
$('#GameStorySys').html(output);
}
});
});

最佳答案

您可以手动清除,例如:

$("[name='GameStoryForm']").click(function() { 
$.ajax({
type: "POST",
data: $("#GameStoryForm").serialize(),
url: "content/commentary/index.cs.asp?Process=EditLiveCommentaryStory&CommentaryID=<%=Request.QueryString("CommentaryID")%>",
success: function(output) {
$('#GameStorySys').html(output);
$("#GameStoryForm").get(0).reset();
//or manually:
// $("#GameStoryForm :input").not(':button, :submit, :reset, :hidden')
// .val('').removeAttr('checked selected');
},
error: function(output) {
$('#GameStorySys').html(output);
}
});
});

关于jquery - 提交表单后清除表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2659252/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com