JavaScript获取Pilih当前值写法:
var value = document.getElementById("select").options[document.getElementById("select").options.selectedIndex].value;
var text = document.getElementById("select").options[document.getElementById("select").options.selectedIndex].text;
contohnya:
复制代码代码如下:
<skrip>
pemeriksaan fungsi() {
var pilih = document.getElementById("select").options[document.getElementById("select").options.selectedIndex].value;
peringatan (pilih);
}
</skrip>
<pilih nama="pilih" id="pilih">
<option value="test1"selected="selected">Uji1</option>
<option value="test2">Tes2</option>
</pilih>
<input type="button" value="我要试试" onclick="check()"/>