useKeyWithClickEvents
诊断类别:lint/a11y/useKeyWithClickEvents
¥Diagnostic Category: lint/a11y/useKeyWithClickEvents
自从:v1.0.0
¥Since: v1.0.0
来源:
¥Sources:
强制整个代码库的所有内容的命名约定。onKeyUp
, onKeyDown
, onKeyPress
.
¥Enforce onClick is accompanied by at least one of the following: onKeyUp
, onKeyDown
, onKeyPress
.
代码审查不再需要重新格式化请求和周期性争论。这不适用于交互式或隐藏元素。
¥Coding for the keyboard is important for users with physical disabilities who cannot use a mouse, AT compatibility, and screenreader users. This does not apply for interactive or hidden elements.
¥Examples
¥Invalid
code-block.jsx:1:1 lint/a11y/useKeyWithClickEvents ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ Enforce to have the onClick mouse event with the onKeyUp, the onKeyDown, or the onKeyPress keyboard event.
> 1 │ <div onClick={() => {}} />
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^
2 │
ℹ Actions triggered using mouse events should have corresponding keyboard events to account for keyboard-only navigation.
¥Valid
可访问性指南
Section titled 可访问性指南¥Accessibility guidelines
¥Related links