国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁(yè)javascriptselectJavascript Form - 如何請(qǐng)使用DOM在下拉菜單中指向所選項(xiàng)目

Javascript Form - 如何請(qǐng)使用DOM在下拉菜單中指向所選項(xiàng)目

我們想知道如何請(qǐng)使用DOM在下拉菜單中指向所選項(xiàng)目。

<!DOCTYPE html>
<html>
<body>
  <select id="My_Select_Menu">
    <option value="Blue" selected="selected">blue</option>
  </select>
    <script type='text/javascript'>
    
        var sel = document.getElementById("My_Select_Menu");
        if (sel.options[sel.selectedIndex].value == "Blue") {
            console.log("hahaha");
        }
    
    </script>
</body>
</html>