React App中存在无效的皮棉错误标签

时间:2019-04-16 13:23:31

标签: reactjs accessibility eslint

即使下面的代码已经解决了隐式和显式标签问题,我仍然会遇到此错误。

  

表单标签必须具有以下所有类型的关联控件:嵌套,id jsx-a11y / label-has-for

代码:

<label
  className={styles['single-select']}
  htmlFor='select-id'
>
  Select Label
  <select
    id='select-id'
    onBlur={() => {}}
    onChange={() => {}}
  >
    <option>One</option>
    <option>Two</option>
  </select>
</label>

0 个答案:

没有答案