gpt4 book ai didi

javascript - Jquery ajax 一次只发布一些数据

转载 作者:行者123 更新时间:2023-12-01 00:50:30 25 4
gpt4 key购买 nike

我一直使用查询ajax请求来处理一些简单的事情,比如preventdefault表单提交,并在表单提交到我的nodejs后端后添加beforesend函数或完整函数:

$.ajax({
type: "POST",
url: "/contact",
beforeSend:function(){
$(".loading_msg").hide();

},
complete:function(){
$(".loading_msg").show();
setTimeout(function(){
console.log('Here')
$(".loading_msg").fadeOut("slow");
$("#message").val("")
},3000)
}
});

现在,我遇到了一种情况,我必须仅提交部分表单输入元素。表单内还有动态生成的输入元素。

有没有办法让我只发送带有我想要的 id 或类的输入框而不是整个表单?

最佳答案

如果你想发送一些特定的数据到你的服务器,你可以自己配置数据,如下所示:

$.ajax({
type: "POST",
url: "/contact",
data: {
myKey1: $("#myKey1").val(),
myKey2: $("#myKey2").val()
},
beforeSend:function(){
$(".loading_msg").hide();

},
complete:function(){
$(".loading_msg").show();
setTimeout(function(){
console.log('Here')
$(".loading_msg").fadeOut("slow");
$("#message").val("")
},3000)
}
});

关于javascript - Jquery ajax 一次只发布一些数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57024028/

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