gpt4 book ai didi

php - 如何使用 Ajax/JS 清除表单

转载 作者:行者123 更新时间:2023-12-01 02:22:38 24 4
gpt4 key购买 nike

Possible Duplicate:
jQuery/Javascript function to clear all the fields of a form

我需要在提交后清除表单,但我见过的方法都不适合我。我正在使用我购买的脚本,但作者没有回应我的请求。我有这样的 JS 文件:

$('#contact_form').submit(function () {
$.ajax({
type: 'POST',
url: 'contact.php',
data: {
name: $('#contact_form input#name').val(),
email: $("#contact_form input#email").val(),
text: $("#contact_form textarea").val()
},
success: function(data) {
if ( data == 'sent' ) {
$('#contact_form .status').html('Thanks');
} else if ( data == 'invalid' ) {
$('#contact_form .status').html('Invalid.');
} else {
$('#contact_form .status').html('Can't send message.');
}
},
error: function () {
$('#contact_form .status').html('Can't send message.');
}
});
return false;
});


}

最佳答案

您的意思是除了基本的 document.getElementById("contact_form").reset() 之外?

关于php - 如何使用 Ajax/JS 清除表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11677235/

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