jquery获取选中的文本和值的方法_jquery
程序员文章站
2022-06-09 18:14:10
...
1、说明
(1)获取select下拉框选中的索引
$("#selection").get(0).selectedIndex;
(2)获取select下拉框选中的值
$("#selection option:selected").val();
(3)获取select下拉框选中的文本
$("#selection option:selected").text();
2、实现源码
html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3、实现结果
(1)选中第一项
(2)选中最后一项