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;
//獲取選中的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標籤選中的值
var obj document.getelementbyidx x testselect 定位id var index obj.selectedindex 選中索引 var text obj.options index text 選中文字 var value obj.options index v...
js獲取select選中的標籤option的值
js中獲取方法 var obj document.getelementbyidx xx x testselect 定位id var index obj.selectedindex 選中索引 var text obj.options index text 選中文字 var value obj.opti...
js獲取select標籤選中的值
js獲取select標籤選中的值 var obj document.getelementbyidx x testselect 定位id var index obj.selectedindex 選中索引 var text obj.options index text 選中文字 var value ob...