$('#someId').prop('selectedIndex'); $('option:selected', '#someId').index(); $('#someId option').index($('#someId option:selected')) 以上三种方式可以取到索引值
案例应用
function checkBank() { var industryParentType=$("#key_industryParentType").val(); var accountName=$("#key_accountId option:selected").text(); var Indexnnn=$('option:selected', '#key_accountId').index(); alert(accountName+"---"+Indexnnn); if(accountName.indexOf("快钱")>=0) { if(industryParentType!=null&&industryParentType==3&&industryParentType!=""&&industryParentType!=undefined){ alert("如果选择了金融行业,则在这里只能选择银行账户,如果没有银行账户请去银行账户页面添加银行账户,谢谢!"); $("#key_accountId ").get(0).selectedIndex=2; } } }
默认选中第二条