如何获取select下拉框中option选中的文本值

$(select的id或者class).change(function(){
$(this).find("option:selected").text()
})

 

js获取select标签选中的值
var obj = document.getElementByIdx_x(”testSelect”); //定位id

var index = obj.selectedIndex; // 选中索引

var text = obj.options[index].text; // 选中文本

var value = obj.options[index].value; // 选中值

 

jQuery中获得选中select值

第一种方式
$('#testSelect option:selected').text();//选中的文本

$('#testSelect option:selected') .val();//选中的值

$("#testSelect ").get(0).selectedIndex;//索引

 

第二种方式
$("#tesetSelect").find("option:selected").text();//选中的文本
…….val();
…….get(0).selectedIndex;

 

 

源文:https://fly.layui.com/jie/21170/

 

https://www.cnblogs.com/qq3245792286/p/6390504.html

posted @ 2019-10-08 10:01  BloggerSb  阅读(1428)  评论(0编辑  收藏  举报