首页 > 代码库 > js获取select标签选中的值

js获取select标签选中的值

var obj = document.getElementByIdx_x(”testSelect”); //定位idvar index = obj.selectedIndex; // 选中索引var text = obj.options[index].text; // 选中文本var value = http://www.mamicode.com/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;   //获取选中的selecet的信息            var selecttext = $(#sourceSelect option:selected).text();            var selecttval = $("#sourceSelect option:selected").val();            var selecttid = $("#sourceSelect option:selected").id;            var seltext = $("#sourceSelect").find("option:selected").text();            var selval = $("#sourceSelect").find("option:selected").val();

 

js获取select标签选中的值