获得select被选中option的value和text

时间:2022-12-09 17:14:01

一:JavaScript原生的方法

1:得到select对象: var myselect=document.getElementById(“test”);

2:得到选中项的索引:var index=myselect.selectedIndex ; // selectedIndex代表的是选中项的index

3:得到选中项options的value: myselect.options[index].value;

4:得到选中项options的text: myselect.options[index].text;

二:jQuery方法

1:var options=$(“#test option:selected”); //获取选中的项

2:alert(options.val()); //得到选中项的值

3:alert(options.text()); //得到选中项的文本