JavaScript如何获得Select下拉框选中的值

js代码:

var mySelect = document.getElementById("resultList2");
var mySelectText = mySelect.options[mySelect.selectedIndex].text;

html代码:

<select id="resultList2"  disabled="disabled">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
上一篇:Python3.x:遍历select下拉框获取value值


下一篇:docker入门(二)容器与镜像的理解