どのようにselectのコンボボックスの値を取得しますか? 1093 ワード js。 どのようにselectのドロップダウンの値を取得しますか? 1.プルダウンボックスのoptionにvalue属性がない場合 window.onload = funciton(){ var param = document.getElementById("param1"); param.onchange = getParam(){ var text = param.value; } } 2.プルダウンボックスのoptionにvalue属性がある場合 window.onload = funciton(){ var param = document.getElementById("param1"); param.onchange = getParam(){ var selectIndex = param.selectIndex; // </code></pre> <pre><code class="language-html"> var text = param.options[selectIndex].text; </code></pre> <pre><code class="language-html"> } } コールバック付きJSプリロード画像