gpt4 book ai didi

jquery - 如何通过jquery将下拉列表的选定值设置为空

转载 作者:行者123 更新时间:2023-12-03 21:59:15 26 4
gpt4 key购买 nike

我使用jquery来填充下拉列表,代码如下:

 var myOptions = {  
val1 : 'text1',
val2 : 'text2',
val3 : ''
};
$.each(myOptions, function(val, text) {
$('#mySelect').append( $('<option></option>').val(val).html(text)
);

});

现在我已经在下拉列表中填充了 3 个项目,现在我想用 '' 设置我的下拉列表选定值,就像:

$("#mySelect option contain('')").attr(selected,true).

实际上,这将获取所有 3 个项目,因此不会将 '' 设置为选定值,有什么方法可以做到这一点吗?

最佳答案

$("#mySelect option[value='']").attr('selected', true)

关于jquery - 如何通过jquery将下拉列表的选定值设置为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6734747/

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