aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/html/global_attributes/tabindex/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/html/global_attributes/tabindex/index.html')
-rw-r--r--files/zh-cn/web/html/global_attributes/tabindex/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/zh-cn/web/html/global_attributes/tabindex/index.html b/files/zh-cn/web/html/global_attributes/tabindex/index.html
index a67c3d938c..11fa7b9019 100644
--- a/files/zh-cn/web/html/global_attributes/tabindex/index.html
+++ b/files/zh-cn/web/html/global_attributes/tabindex/index.html
@@ -15,9 +15,9 @@ translation_of: Web/HTML/Global_attributes/tabindex
<p>它接受一个整数作为值,具有不同的结果,具体取决于整数的值:</p>
<ul>
- <li>tabindex=负值 (通常是tabindex=“-1”),表示元素是可聚焦的,但是不能通过键盘导航来访问到该元素,用JS做页面小组件内部键盘导航的时候非常有用。</li>
- <li><code>tabindex="0"</code> ,表示元素是可聚焦的,并且可以通过键盘导航来聚焦到该元素,它的相对顺序是当前处于的DOM结构来决定的。</li>
- <li>tabindex=正值,表示元素是可聚焦的,并且可以通过键盘导航来访问到该元素;它的相对顺序按照<strong>tabindex</strong> 的数值递增而滞后获焦。如果多个元素拥有相同的 <strong>tabindex</strong>,它们的相对顺序按照他们在当前DOM中的先后顺序决定。</li>
+ <li>tabindex=负值 (通常是 tabindex=“-1”),表示元素是可聚焦的,但是不能通过键盘导航来访问到该元素,用 JS 做页面小组件内部键盘导航的时候非常有用。</li>
+ <li><code>tabindex="0"</code> ,表示元素是可聚焦的,并且可以通过键盘导航来聚焦到该元素,它的相对顺序是当前处于的 DOM 结构来决定的。</li>
+ <li>tabindex=正值,表示元素是可聚焦的,并且可以通过键盘导航来访问到该元素;它的相对顺序按照<strong>tabindex</strong> 的数值递增而滞后获焦。如果多个元素拥有相同的 <strong>tabindex</strong>,它们的相对顺序按照他们在当前 DOM 中的先后顺序决定。</li>
</ul>
<p>根据键盘序列导航的顺序,值为 <code>0</code> 、非法值、或者没有 <strong>tabindex</strong> 值的元素应该放置在 <strong>tabindex</strong> 值为正值的元素后面。</p>