// select change函数
// change(this)
function getText(obj){
// obj 节点
var txt=obj.options[obj.options.selectedIndex].text;
console.log(txt)
}
function getVaule(obj){
var val=obj.options[obj.options.selectedIndex].value;
console.log(val)
}
//方式2
var obj = document.getElementById("testSelect");
var text = obj.options[index].text; // 文本值
var value = obj.options[index].value; // value值
var index = obj.selectedIndex; // 索引值
本篇总结 js/jq 两种方式获取select下拉框的文本值和value值。
(一)js 获取select下拉框的文本值和value值
----------js (二)jq 获取select下拉框的文本值和value值
ok。