gpt4 book ai didi

jquery - AJAX 调用 Select 元素中的多重选择

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

如何在启用多选的 select 输入的选择更改上进行 jQuery AJAX 调用。

最佳答案

我使用这个方法,只有你可以在帖子中看到更多内容:

Using jQuery, how do you mimic the form serialization for a select with multiple options selected in a $.ajax call?

 var mySelections = [];
$('#mySelect option').each(function(i) {
if (this.selected == true) {
mySelections.push(this.value);
}
});


$.ajax({
type: "post",
url: "http://myServer" ,
dataType: "text",
data: {
'service' : 'myService',
'program' : 'myProgram',
'selected' : mySelections
},
success: function(request) {
result.innerHTML = request ;
}
}); // End ajax method

关于jquery - AJAX 调用 Select 元素中的多重选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5104373/

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