您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920
  1. # no-access-key
  2. Enforce no accessKey prop on element. Access keys are HTML attributes that allow web developers to assign keyboard shortcuts to elements. Inconsistencies between keyboard shortcuts and keyboard commands used by screenreader and keyboard only users create accessibility complications so to avoid complications, access keys should not be used.
  3. ### References
  4. 1. [WebAIM](http://webaim.org/techniques/keyboard/accesskey#spec)
  5. ## Rule details
  6. This rule takes no arguments.
  7. ### Succeed
  8. ```jsx
  9. <div />
  10. ```
  11. ### Fail
  12. ```jsx
  13. <div accessKey="h" />
  14. ```