gpt4 book ai didi

jquery - 如何使用 jQuery 检查选​​择框中是否未选择任何选项?

转载 作者:行者123 更新时间:2023-12-03 22:23:56 24 4
gpt4 key购买 nike

我试图查看是否在选择框中选择了某个选项,如果没有,我希望它提醒一个字符串。我指的是这个链接( Check if option is selected with jQuery, if not select a default ),但它不起作用。

这是我的代码:

<select id="language" name="language">
<option value=""></option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>

if(!$("#language option:selected").length) {
alert('no option is selected');
}

我几乎复制了链接的答案,但它仍然不起作用。我错过了什么?

最佳答案

另一种方法是:

  if($("#language").attr("selectedIndex") == 0) {
alert("You haven't selected anything!");
}

工作示例位于:http://jsbin.com/eluki3/edit

关于jquery - 如何使用 jQuery 检查选​​择框中是否未选择任何选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2385963/

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