获取下拉框的文本或值

var obj=document.getElementById('id');

var text=obj.options[obj.selectedIndex].text;//获取文本

var obj=document.getElementById('id');

var value=obj.options[obj.selectedIndex].value;//获取文本

原文地址:https://www.cnblogs.com/joke0406/p/6610543.html