aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/htmlelement/tabindex/index.html
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-07-30 13:16:49 +0900
committerGitHub <noreply@github.com>2021-07-30 13:16:49 +0900
commitede8167be634194a14f76f6d45485b8891bcdb35 (patch)
tree09b179b0b4404718ecce41ba9a12003aea7dfe3d /files/ja/web/api/htmlelement/tabindex/index.html
parent093cf8ad24d87bdf2812916a745399863dfac50c (diff)
downloadtranslated-content-ede8167be634194a14f76f6d45485b8891bcdb35.tar.gz
translated-content-ede8167be634194a14f76f6d45485b8891bcdb35.tar.bz2
translated-content-ede8167be634194a14f76f6d45485b8891bcdb35.zip
orphaned/Web/API/HTMLOrForeignElement のメンバーを HTMLElement へ移動 (#1595)
* orphaned/Web/API/HTMLOrForeignElement のメンバーを HTMLElement へ移動
Diffstat (limited to 'files/ja/web/api/htmlelement/tabindex/index.html')
-rw-r--r--files/ja/web/api/htmlelement/tabindex/index.html85
1 files changed, 85 insertions, 0 deletions
diff --git a/files/ja/web/api/htmlelement/tabindex/index.html b/files/ja/web/api/htmlelement/tabindex/index.html
new file mode 100644
index 0000000000..c327f1b168
--- /dev/null
+++ b/files/ja/web/api/htmlelement/tabindex/index.html
@@ -0,0 +1,85 @@
+---
+title: HTMLElement.tabIndex
+slug: Web/API/HTMLElement/tabIndex
+tags:
+ - API
+ - HTML DOM
+ - HTMLElement
+ - HTMLElement
+ - Property
+ - Reference
+ - tabIndex
+translation_of: Web/API/HTMLElement/tabIndex
+original_slug: Web/API/HTMLElement/tabIndex
+---
+<div>{{APIRef("HTML DOM")}}</div>
+
+<p><span class="seoSummary"><strong><code>tabIndex</code></strong> は {{DOMxRef("HTMLElement")}} インターフェイスのプロパティで、現在の要素のタブの順序を表します。</span></p>
+
+<p>タブの順序は次のとおりです。</p>
+
+<ol>
+ <li>正の <code>tabIndex</code> を持つ要素。 同一の <code>tabIndex</code> を持つ要素は、表示された順序でナビゲートすべきです。 ナビゲーションは、最も低い <code>tabIndex</code> から最も高い <code>tabIndex</code> に進みます</li>
+ <li><code>tabIndex</code> 属性をサポートしていない要素、または <code>tabIndex</code> 属性をサポートし、 <code>tabIndex</code> を <code>0</code> に割り当てる要素は、それらが表示された順序で。</li>
+</ol>
+
+<p>無効になっている要素は、タブの順序に関与しません。</p>
+
+<p>値は逐次的である必要はなく、特定の値で始まる必要もありません。 各ブラウザーは非常に大きな値を切り取りますが、値は負である場合もあります。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox"><em>element</em>.tabIndex = <em>index</em>;
+var <em>index</em> = <em>element</em>.tabIndex;
+</pre>
+
+<h3 id="Value" name="Value">値</h3>
+
+<p><code>index</code> は整数です。</p>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush:js">const b1 = document.getElementById('button1');
+
+b1.tabIndex = 1;
+</pre>
+
+<h2 id="Specifications" name="Specifications">仕様書</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">状態</th>
+ <th scope="col">備考</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('HTML WHATWG', '#dom-tabindex', 'tabindex')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td>{{SpecName('DOM2 HTML')}} からの変更なし。</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('DOM2 HTML', 'html.html#ID-40676705', 'tabindex')}}</td>
+ <td>{{Spec2('DOM2 HTML')}}</td>
+ <td>{{SpecName('DOM1')}} からの変更なし。</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('DOM1', 'level-one-html.html#ID-40676705', 'tabindex')}}</td>
+ <td>{{Spec2('DOM1')}}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<p>{{Compat("api.HTMLElement.tabIndex")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/Accessibility/Keyboard-navigable_JavaScript_widgets">キーボードでナビゲート可能な JavaScript ウィジェットのアクセシビリティ</a></li>
+ <li>HTML の <a href="/ja/docs/Web/HTML/Global_attributes/tabindex"><strong>tabindex</strong></a> グローバル属性</li>
+</ul>