如何选择第一个选项?我试过这个但是没有用:
selectElement.options[0].selected=true;
它给了我这个错误:
Uncaught TypeError: Cannot read property '0' of undefined
解决了!通过正确定义selectElement。
答案 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;
希望这适合你。