JS如何控制select选中哪项?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS如何控制select选中哪项?相关的知识,希望对你有一定的参考价值。
var obj = document.getElementById(”select_id”); //selectidvar index = obj.selectedIndex; // 选中索引
var text = obj.options[index].text; // 选中文本
var value = obj.options[index].value; // 选中值 参考技术A 在 js 中获取select元素,设定该元素的selectedindex值即可本回答被提问者和网友采纳 参考技术B 获取SELECT相应数据
如何默认获取select的焦点?
参考技术A 这个要用JS。document.getElementById("要获取焦点的元素的ID").focus();以上是关于JS如何控制select选中哪项?的主要内容,如果未能解决你的问题,请参考以下文章