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

前端之家收集整理的这篇文章主要介绍了如何使用jQuery检查选择框中是否未选择任何选项?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图看看是否在选择框中选择了一个选项,如果没有,我希望它提醒一个字符串.我指的是这个链接( 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

原文链接:https://www.f2er.com/jquery/179009.html

猜你在找的jQuery相关文章