gpt4 book ai didi

php - 获取 jQuery 选择插件中取消选择选项的值

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

当文本获取时,我没有获得取消选择选项的值

$('#f_profession').chosen().change(function (evt, params) {
alert($(this).text())
if (params.deselected) {
alert($(this).val())
}
});

最佳答案

$(document).ready(function(){
$('#f_profession').chosen().change(function () {
$(this).find('option:not(:selected)').each(function(){
alert('Text : '+$(this).text());
alert('Value : '+$(this).val());
});
});
});

关于php - 获取 jQuery 选择插件中取消选择选项的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23785336/

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