js截取select下拉列表框当前选择项的文本【原创】
var selectObj = document.getElementById("prodnum")var showText = selectObj.options[selectObj.selectedIndex].text;
就行了
?