我想知道是否有可能让jQuery <option>在下拉框中选择,例如第4个项目?
<option>
<select> <option></option> <option></option> <option></option> <option></option> <option></option> </select>
我希望用户单击一个链接,然后让该<select>框更改其值,就像用户通过单击来选择它一样<option>。
<select>
怎么样
$('select>option:eq(3)').attr('selected', true);
对于现代版本的jquery,应使用.prop()代替.attr()
.prop()
.attr()
$('select>option:eq(3)').prop('selected', true);