js 获取select的值

var t = document.getElementById("provid");


console.log(t.value);

console.log(t.text); //未定义

console.log(t.selectedIndex); //有效

var text = t.options[t.selectedIndex].text; // 选中文本
var value = t.options[t.selectedIndex].value; // 选中值

console.log(text);
console.log(value);

 

上一篇:在 DBGrid 中如何让回车变为光标右移动


下一篇:webui之简单知识梳理