input中radio设置不可选中并设置默认值
时间: 2024-02-05 09:12:04 浏览: 85
html中的input标签的checked属性jquery判断代码
你可以在HTML中使用`disabled`属性来禁用单选按钮,并使用`checked`属性来设置默认选中的单选按钮。例如:
```html
<label for="option1">
<input type="radio" id="option1" name="options" value="option1" checked>
Option 1
</label>
<label for="option2">
<input type="radio" id="option2" name="options" value="option2" disabled>
Option 2 (disabled)
</label>
```
在这个示例中,`option1`将被默认选中,并且用户将无法选择`option2`,因为它被禁用(disabled)。请注意,`for`属性与相应的单选按钮的`id`属性匹配,以便用户单击标签时可以选择单选按钮。
阅读全文