如何获取select选中option的文本?
解决方法:
sc_id代表select标签的id
var select=document.getElementById("sc_id");//或者$("#sc_id").get(0)
alert(select.options[select.options.selectedIndex].text);
还有一种方法,showdiv是js方法:
<select id="sc_id" onchange="showdiv(this.options[this.options.selectedIndex].text);" ></select>