Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在
请帮忙?
不可聚焦的元素不会触发关键事件(尽管关键事件可能会从其中包含的可聚焦元素中冒出)。
如果要使元素具有焦点并接收关键事件,可以将其设置tabindex为 HTML 中的属性或通过 JavaScript。将 tabindex 值设置为 0 会将元素置于默认的 tab 顺序,即元素出现在 DOM 中的顺序。
tabindex
<li tabindex="0">...</li>
<li>在 jQuery中将所有元素设置为可聚焦:
<li>
$("li").prop("tabIndex", 0);