如何通过js选中select 中的一项呢?大家帮帮我吧
<select name="select2" id="select2"><option value="上海">上海</option>
<option value="天津">天津</option>
<option value="重庆">重庆</option>
</select>
如何通过js选中select 中的一项啊,请大家点一下吧,谢谢了 --------------------编程问答-------------------- var t=document.getElementById('select2');
t.selectedIndex=2; --------------------编程问答-------------------- 楼上正解. --------------------编程问答-------------------- 当你不指定value 时,document.getElementById('selectID').value 获得的是selectID的选项的文本
指定value时 需要
document.getElementById('selectID').options
[document.getElementById('selectID').selectedIndex].text
获得text
document.getElementById('selectID').options
[document.getElementById('selectID').selectedIndex].value
获得value
补充:.NET技术 , ASP.NET