gpt4 book ai didi

javascript - Jquery如何从多选下拉列表中获取最终选择值

转载 作者:行者123 更新时间:2023-11-28 01:27:32 24 4
gpt4 key购买 nike

这是我的代码,它将从多选下拉列表中获取所有选定的值,包括以前的选择值。我的问题是,如何获得最终选择值?谢谢!

var devices = new Array();
var device = document.getElementById("deviceCat");
$('#deviceCat option:selected').each(function() {
devices.push($(this).text());
});

例如,如果用户先选择1,然后他发现不需要选择1。所以,他转而选择2和4,但我的代码将输出1,2和4。我什么想要的只是2和4。

最佳答案

给你:

演示:JSFiddle

$("#mySelect").on("change",function(){
var devices = [];
$('#mySelect :selected').each(function(i, selected){
devices[i] = $(selected).text();
//OR
//devices.push($(selected).text());
});
alert(devices);
});

关于javascript - Jquery如何从多选下拉列表中获取最终选择值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22510106/

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