如何通过JavaScript获取<option>元素的当前选定<select>

最佳答案

这将为您做到:

var yourSelect = document.getElementById( "your-select-id" );
alert( yourSelect.options[ yourSelect.selectedIndex ].value )

07-24 18:02