js 获取下拉框的值
var drpObj = document.getElementById("drpSystem");var systemNo = drpObj.options[drpObj.selectedIndex].value;
?