JavaScript原生的方法
1、获取select对象
var myselect = document.getElementById("my_select");
2、拿到选中项的索引
var index = myselect.selectedIndex ; //selectedIndex代表的是你所选中项的index
3、拿到选中项options的value
myselect.options[index].value;
4、拿到选中项options的text
myselect.options[index].text;
jQuery方法(前提是已经加载了jquery库)
1、获取选中的项
var options=$("#my_select option:selected");
2、拿到选中项的值
alert(options.val());
3、拿到选中项的文本
alert(options.text());