使用jQuery,你如何检查选择菜单中是否有一个选项,如果没有,分配一个选择的选项。

(选择生成与一个应用程序的PHP函数的迷宫,我刚刚继承,所以这是一个快速修复,而我得到我的脑袋周围的那些:)


当前回答

这个问题已经很老了,有很多观点,所以我只是抛出一些东西,我相信会对一些人有所帮助。

检查一个选择元素是否有任何选定项:

if ($('#mySelect option:selected').length > 0) { alert('has a selected item'); }

或者检查一个select对象是否没有被选中:

if ($('#mySelect option:selected').length == 0) { alert('nothing selected'); }

或者如果你在某种循环中,想要检查当前元素是否被选中:

$('#mySelect option').each(function() {
    if ($(this).is(':selected')) { .. }
});

检查一个元素在循环中是否未被选中:

$('#mySelect option').each(function() {
    if ($(this).not(':selected')) { .. }
});

这是一些方法。jQuery有许多不同的方法来完成相同的事情,因此通常只需选择一种最有效的方法。

其他回答

你们选的人太多了。只需按值选择:

$("#mySelect").val( 3 );

我已经遇到了texotela插件,这让我像这样解决它:

$(document).ready(function(){
    if ( $("#context").selectedValues() == false) {
    $("#context").selectOptions("71");
    }
});

不需要使用jQuery:

var foo = document.getElementById('yourSelect');
if (foo)
{
   if (foo.selectedIndex != null)
   {
       foo.selectedIndex = 0;
   } 
}
$("option[value*='2']").attr('selected', 'selected');
// 2 for example, add * for every option
$("#select_box_id").children()[1].selected

这是在jquery中检查一个选项是否被选中的另一种方式。这将返回布尔值(True或False)。

[1]是选择框选项的索引