当前位置: 代码迷 >> 综合 >> JS检索下拉列表框中被选项目的索引号(selectedIndex)
  详细解决方案

JS检索下拉列表框中被选项目的索引号(selectedIndex)

热度:65   发布时间:2024-01-17 16:13:12.0

设置或获取选中选项位于 select 对象中的位置

  <select id="play_mode" style="width:173px;"><option value="0">实时视频</option><option value="1">回放视频</option></select><button onClick='getInfo()'>点击获取索引</button><script>function getInfo() {
    var playMode = document.getElementById('play_mode');console.log(playMode.selectedIndex);}</script>

在这里插入图片描述
在这里插入图片描述