HTML select元素具有selectedIndex可以写入的属性,以选择特定的选项:$('select').prop('selectedIndex', 3); // select 4th option使用纯JavaScript可以通过以下方法实现:// use first select elementvar el = document.getElementsByTagName('select')[0]; // assuming el is not null, select 4th optionel.selectedIndex = 3;