How to get the Index of select->option tag

后端 未结 8 1264
独厮守ぢ
独厮守ぢ 2020-12-09 10:35

                        
    
提交评论

  • 2020-12-09 11:08

    The title doesn't quite match the question...

    How to get the Index of select->option tag

    option.index // javascript
    
    $(option).prop('index') // jquery
    

    index of selected select->option tag:

    document.getElementById('sel').selectedIndex // javascript
    
    0 讨论(0)
  • 提交回复
    热议问题