JavaScript获取Select当前值写法:
valor var = document.getElementById("select").options[document.getElementById("select").options.selectedIndex].value;
var texto = document.getElementById("select").options[document.getElementById("select").options.selectedIndex].text;
Ejemplo:
复制代码代码如下:
<guión>
verificación de función () {
var select = document.getElementById("select").options[document.getElementById("select").options.selectedIndex].value;
alerta(seleccionar);
}
</script>
<seleccionar nombre="seleccionar" id="seleccionar">
<opción valor="prueba1" seleccionada="seleccionada">Prueba1</opción>
<opción valor="prueba2">Prueba2</opción>
</seleccionar>
<tipo de entrada="botón" valor="我要试试" onclick="check()"/>