JS获取下拉框被选中的value值

var rtl=document.getElementById("depFs1");  //获取下拉框对象
alert(rtl.options[rtl.selectedIndex].value); //获取被选中的值

 

你可能感兴趣的:(js,下拉框值)