前端实现name为this的radio选项,用js或jquery选择a这个选择
时间: 2024-02-09 19:11:36 浏览: 46
jquery.radio.js
4星 · 用户满意度95%
可以使用 jQuery 来选择 name 为 this 的 radio 选项中的 a 选项,代码如下:
```javascript
$('input[name="this"][value="a"]').prop('checked', true);
```
这段代码会选择 name 为 this 的 radio 选项中的 value 为 a 的选项,并将其设置为选中状态。
阅读全文