gpt4 book ai didi

javascript - 从选择元素返回 SelectedIndex

转载 作者:行者123 更新时间:2023-11-28 10:58:26 24 4
gpt4 key购买 nike

如果没有选择任何内容,是否有可能让 selectedIndex 返回 -1,而不是位置 0 处的元素文本。

即使没有选择任何内容,selectedIndex 也会返回 0。

<select id="qwe" name="qwe">
<option>11</option>
<option>22</option>
</select>

document.someForm.qwe.value
//returns 11

$('#qwe option:selected').val()
//returns 11



<select id="qwe" name="qwe">
<option selected="false">11</option>
<option>22</option>
</select>
$('#qwe option:selected').val()
//returns 11

<select id="qwe" name="qwe">
<option selected="false">11</option>
<option selected="false">22</option>
</select>
$('#qwe option:selected').val()
//returns 22

最佳答案

无需添加默认的第一个选项...只需使用 .prop()并更改selectedIndex:

$('#qwe').prop('selectedIndex', -1); 

演示: http://jsfiddle.net/dirtyd77/j76yH/2/

如果您有任何疑问,请告诉我!

关于javascript - 从选择元素返回 SelectedIndex,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15685992/

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