select 選中索引

1 <script>
2     $('#someId').change(function(){
3 //        alert($('#someId').prop('selectedIndex'));  //0、一、二、3...........
4 //        alert($('option:selected', '#someId').index());  //0、一、二、3...........
5         alert($('#someId option').index($('#someId option:selected')));  //0、一、二、3...........
6     });
7 
8 </script>
相關文章
相關標籤/搜索