select选中获取索引三种写法

$('#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;

     }
 }
 }

默认选中第二条

上一篇:Git 初始化配置


下一篇:java中端口号被占用的解决办法