下拉列表:
得到选中的菜单,以及菜单的内容
var selectIndex = document.getElementById("approveWordInfo").selectedIndex;//获得是第几个被选中了 var selectText = document.getElementById("approveWordInfo").options[selectIndex].text
当下拉列表的属性为disabled时,是得不到value值的
下拉列表:
得到选中的菜单,以及菜单的内容
var selectIndex = document.getElementById("approveWordInfo").selectedIndex;//获得是第几个被选中了 var selectText = document.getElementById("approveWordInfo").options[selectIndex].text
当下拉列表的属性为disabled时,是得不到value值的
转载于:https://www.cnblogs.com/sp2012/archive/2012/01/13/2465696.html