jquery怎么给<option>标签添加一个selected="selected
时间: 2024-03-20 16:41:29 浏览: 138
可以使用 jQuery 的 `attr()` 方法来为 `option` 元素添加 `selected` 属性,并将属性值设置为 `"selected"`。
示例代码如下:
```javascript
// 选中 id 为 select 的 select 元素中的第二个 option 元素,并添加 selected 属性
$('#select option:eq(1)').attr('selected', 'selected');
```
其中,`$('#select option:eq(1)')` 选择器用于选中 id 为 `select` 的 select 元素中的第二个 `option` 元素,`.attr('selected', 'selected')` 方法用于为该 `option` 元素添加 `selected` 属性,并将属性值设置为 `"selected"`。
需要注意的是,如果需要设置多个 `option` 元素的 `selected` 属性,可以使用 `each()` 方法遍历所有需要设置的 `option` 元素,然后为其添加 `selected` 属性。示例代码如下:
```javascript
// 选中 id 为 select 的 select 元素中的前三个 option 元素,并添加 selected 属性
$('#select option:lt(3)').each(function() {
$(this).attr('selected', 'selected');
});
```
其中,`$('#select option:lt(3)')` 选择器用于选中 id 为 `select` 的 select 元素中的前三个 `option` 元素,`.each()` 方法用于遍历所有选中的 `option` 元素,并为其添加 `selected` 属性。
阅读全文