我想根据浏览器自己对哪个元素是下一个可聚焦元素的计算来更改DOM中的焦点。
我了解...
我的问题是:我们可以利用浏览器自身的逻辑来确定下一个可聚焦元素并集中精力吗?
答案 0 :(得分:0)
不需要JS。
您是否尝试过属性tabindex
?
<input type"text" tabindex="1">
<input type"text" tabindex="3">
<input type"text" tabindex="2">
<input type"text" tabindex="5">
<input type"text" tabindex="4">
<input type"text" tabindex="7">
<input type"text" tabindex="8">
<input type"text" tabindex="6">
请参阅我的source,您也可以将其用于<a>
,<textarea>
,<select>
和<button>
元素。
如果这个答案不能满足您的问题/需求,请告诉我。