欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

获取select下的option的下标

程序员文章站 2022-06-16 10:27:19
...
<select name="selectType" id="selectIndex">
                <option>选择所属分类</option>
                <option>计算机/软件</option>
                <option>小说/文摘</option>
                <option>杂类</option>
            </select><br>
             <input type="button" value="获取值" id="getValue">
 $(function(){
        $('#getValue').click(function(){
       
            var select=document.getElementsByName("selectType")[0];
            var index=select.selectedIndex;
            alert(index)
        })
    })