jQuery设置选择索引
```
// Set the index of the selected option in a <select> element
$("select").prop("selectedIndex", 2);
// Get the index of the selected option in a <select> element
var selectedIndex = $("select").prop("selectedIndex");
```
21 浏览
匿名的
0 Comments
jQuery设置选择索引
```
// Set the index of the selected option in a element
$("select").prop("selectedIndex", 2);
// Get the index of the selected option in a element
var selectedIndex = $("select").prop("selectedIndex");
```