用的elementplus库中的form表单中的只有单选框会在谷歌浏览器控制台报错及怎么解决Incorrect use of <label for=FORM_ELEMENT> The label’s for attribute doesn’t match any element id. This might prevent the browser from correctly autofilling the form and accessibility tools from working correctly. To fix this issue, make sure the label’s for attribute references the correct id of a form field.
时间: 2024-03-08 19:51:01 浏览: 166
单选框问题
3星 · 编辑精心推荐
这个错误提示是因为标签的for属性值与表单元素的id属性值不匹配导致的。正确的做法是在表单元素中添加一个id属性,并将label标签的for属性设置为该表单元素的id值。例如:
```
<el-form-item label="单选框">
<el-radio v-model="radio" label="1" id="radio1">选项1</el-radio>
<el-radio v-model="radio" label="2" id="radio2">选项2</el-radio>
</el-form-item>
```
这样就可以避免这个问题了。
阅读全文