重置选择元素

时间:2012-02-04 15:27:02

标签: javascript dom

如何选择第一个选项?我试过这个但是没有用:

  selectElement.options[0].selected=true;

它给了我这个错误:

   Uncaught TypeError: Cannot read property '0' of undefined

更新

解决了!通过正确定义selectElement。

2 个答案:

答案 0 :(得分:5)

试试这个

document.getElementById('mySelect').selectedIndex = 0;

答案 1 :(得分:-1)

试试这个(参见demo

HTML

<select id="selectElement">
    <option>First</option>
    <option selected>Second</option>
</select>

的JavaScript

selectElement.options[0].selected="selected";

或者你可以selectElement.options[0].selected=true;

希望这适合你。