From ce41b164796cd61c253a0016c50017193057fe7f Mon Sep 17 00:00:00 2001 From: j <115390541+rosaceaee@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:19:16 +0900 Subject: [PATCH 1/7] =?UTF-8?q?[ko]=20api/htmlelement/tabindex=20=EC=8B=A0?= =?UTF-8?q?=EA=B7=9C=20=EB=B2=88=EC=97=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ko/web/api/htmlelement/tabIndex/index.md | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 files/ko/web/api/htmlelement/tabIndex/index.md diff --git a/files/ko/web/api/htmlelement/tabIndex/index.md b/files/ko/web/api/htmlelement/tabIndex/index.md new file mode 100644 index 00000000000000..73b718c1ab230c --- /dev/null +++ b/files/ko/web/api/htmlelement/tabIndex/index.md @@ -0,0 +1,46 @@ +--- +title: "HTMLElement: tabIndex 속성" +slug: Web/API/HTMLElement/tabIndex +l10n: + sourceCommit: a3d9f61a8990ba7b53bda9748d1f26a9e9810b18 +--- + +{{APIRef("HTML DOM")}} + +**`tabIndex`** 는 현재 요소의 탭 순서를 나타내는 {{DOMxRef("HTMLElement")}} 인터페이스입니다. + +탭 순서의 흐름 + +1. `tabIndex`가 정수인 요소인 경우. + 동일한 `tabIndex`값을 가진 요소는 차례대로 나타난 순서로 표시됩니다. + 이 순서는 `tabIndex` 요소의 가장 낮은 값에서 가장 높은 값으로 진행됩니다. +2. `tabIndex` 속성을 지원하지 않거나 지원하지만 `tabIndex` 값이 `0`인 경우에는 순서대로 표시됩니다. + +disabled 속성을 가진 요소는 탭 순서에 들어가지 않습니다. + +값이 순서대로 부여되지 않아도 되며 특정 값으로 시작되어도 됩니다. 음수인 경우라면 각 브라우저에서 매우 큰 값으로 정돈하여 나타냅니다. + +## 값 + +정수 + +## 예제 + +```js +const b1 = document.getElementById("button1"); + +b1.tabIndex = 1; +``` + +## 명세 + +{{Specifications}} + +## 브라우저 호환성 + +{{Compat}} + +## 같이 보기 + +- [Accessibility of keyboard-navigable JavaScript widgets](/en-US/docs/Web/Accessibility/Keyboard-navigable_JavaScript_widgets) +- HTML 전역 특성 [`tabindex`](/ko/docs/Web/HTML/Global_attributes/tabindex) From f0a3fb3e36d3b6b294bbdab3c3b0d81c9bc62534 Mon Sep 17 00:00:00 2001 From: j <115390541+rosaceaee@users.noreply.github.com> Date: Mon, 16 Sep 2024 20:38:07 +0900 Subject: [PATCH 2/7] =?UTF-8?q?=EB=A6=B0=ED=8A=B8=EC=97=90=20=EB=A7=9E?= =?UTF-8?q?=EC=B6=94=EC=96=B4=20=EA=B3=B5=EB=B0=B1=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- files/ko/web/api/htmlelement/tabIndex/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/ko/web/api/htmlelement/tabIndex/index.md b/files/ko/web/api/htmlelement/tabIndex/index.md index 73b718c1ab230c..dec582cdd240e2 100644 --- a/files/ko/web/api/htmlelement/tabIndex/index.md +++ b/files/ko/web/api/htmlelement/tabIndex/index.md @@ -12,8 +12,8 @@ l10n: 탭 순서의 흐름 1. `tabIndex`가 정수인 요소인 경우. - 동일한 `tabIndex`값을 가진 요소는 차례대로 나타난 순서로 표시됩니다. - 이 순서는 `tabIndex` 요소의 가장 낮은 값에서 가장 높은 값으로 진행됩니다. + 동일한 `tabIndex`값을 가진 요소는 차례대로 나타난 순서로 표시됩니다. + 이 순서는 `tabIndex` 요소의 가장 낮은 값에서 가장 높은 값으로 진행됩니다. 2. `tabIndex` 속성을 지원하지 않거나 지원하지만 `tabIndex` 값이 `0`인 경우에는 순서대로 표시됩니다. disabled 속성을 가진 요소는 탭 순서에 들어가지 않습니다. From 306676cef5b704bfec5afbc14c084fb0731ff569 Mon Sep 17 00:00:00 2001 From: hochan Lee Date: Sun, 22 Sep 2024 18:13:27 +0900 Subject: [PATCH 3/7] Update files/ko/web/api/htmlelement/tabIndex/index.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- files/ko/web/api/htmlelement/tabIndex/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/ko/web/api/htmlelement/tabIndex/index.md b/files/ko/web/api/htmlelement/tabIndex/index.md index dec582cdd240e2..949421bc29b764 100644 --- a/files/ko/web/api/htmlelement/tabIndex/index.md +++ b/files/ko/web/api/htmlelement/tabIndex/index.md @@ -42,5 +42,5 @@ b1.tabIndex = 1; ## 같이 보기 -- [Accessibility of keyboard-navigable JavaScript widgets](/en-US/docs/Web/Accessibility/Keyboard-navigable_JavaScript_widgets) +- [Accessibility of keyboard-navigable JavaScript widgets](/ko/docs/Web/Accessibility/Keyboard-navigable_JavaScript_widgets) - HTML 전역 특성 [`tabindex`](/ko/docs/Web/HTML/Global_attributes/tabindex) From 3025a0e285a5524233a4686223baa8856c0e8ed3 Mon Sep 17 00:00:00 2001 From: j <115390541+rosaceaee@users.noreply.github.com> Date: Sat, 28 Sep 2024 19:07:11 +0900 Subject: [PATCH 4/7] =?UTF-8?q?Tabindex=20=EB=A6=AC=EB=B7=B0=20=EB=82=B4?= =?UTF-8?q?=EC=9A=A9=20=EB=B0=98=EC=98=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ko/web/api/htmlelement/tabIndex/index.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/files/ko/web/api/htmlelement/tabIndex/index.md b/files/ko/web/api/htmlelement/tabIndex/index.md index 949421bc29b764..61e5abf00deded 100644 --- a/files/ko/web/api/htmlelement/tabIndex/index.md +++ b/files/ko/web/api/htmlelement/tabIndex/index.md @@ -9,16 +9,16 @@ l10n: **`tabIndex`** 는 현재 요소의 탭 순서를 나타내는 {{DOMxRef("HTMLElement")}} 인터페이스입니다. -탭 순서의 흐름 +탭 순서는 다음과 같습니다. -1. `tabIndex`가 정수인 요소인 경우. - 동일한 `tabIndex`값을 가진 요소는 차례대로 나타난 순서로 표시됩니다. - 이 순서는 `tabIndex` 요소의 가장 낮은 값에서 가장 높은 값으로 진행됩니다. -2. `tabIndex` 속성을 지원하지 않거나 지원하지만 `tabIndex` 값이 `0`인 경우에는 순서대로 표시됩니다. +1. `tabIndex`가 양수인 요소인 경우. + 동일한 `tabIndex`값을 가진 요소들은 나타나는 순서대로 탐색되어야 합니다. + 탐색은 가장 낮은 `tabIndex`에서 가장 높은 `tabIndex`로 진행됩니다. +2. `tabIndex` 속성을 지원하지 않거나 지원하면서 `tabIndex`를 `0`으로 지정한 요소들은 나타나는 순서대로 탐색됩니다. -disabled 속성을 가진 요소는 탭 순서에 들어가지 않습니다. +비활성화된 요소들은 탭 순서에 참여하지 않습니다. -값이 순서대로 부여되지 않아도 되며 특정 값으로 시작되어도 됩니다. 음수인 경우라면 각 브라우저에서 매우 큰 값으로 정돈하여 나타냅니다. +값은 순차적일 필요가 없으며, 특정 값으로 시작할 필요도 없습니다. 값은 음수일 수도 있지만, 각 브라우저는 매우 큰 값을 잘라냅니다. ## 값 @@ -32,7 +32,7 @@ const b1 = document.getElementById("button1"); b1.tabIndex = 1; ``` -## 명세 +## 명세서 {{Specifications}} From b4d4db58597a6b9ca0fa8684d80a7eb64a4fc22f Mon Sep 17 00:00:00 2001 From: hochan Lee Date: Sun, 29 Sep 2024 20:07:38 +0900 Subject: [PATCH 5/7] Update files/ko/web/api/htmlelement/tabIndex/index.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- files/ko/web/api/htmlelement/tabIndex/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/ko/web/api/htmlelement/tabIndex/index.md b/files/ko/web/api/htmlelement/tabIndex/index.md index 61e5abf00deded..3c1db6a1af5f95 100644 --- a/files/ko/web/api/htmlelement/tabIndex/index.md +++ b/files/ko/web/api/htmlelement/tabIndex/index.md @@ -12,7 +12,7 @@ l10n: 탭 순서는 다음과 같습니다. 1. `tabIndex`가 양수인 요소인 경우. - 동일한 `tabIndex`값을 가진 요소들은 나타나는 순서대로 탐색되어야 합니다. + 동일한 `tabIndex`값을 가진 요소들은 나타나는 순서대로 탐색되어야 합니다. 탐색은 가장 낮은 `tabIndex`에서 가장 높은 `tabIndex`로 진행됩니다. 2. `tabIndex` 속성을 지원하지 않거나 지원하면서 `tabIndex`를 `0`으로 지정한 요소들은 나타나는 순서대로 탐색됩니다. From 7a8a16fbcbbc345a893a822107de472a8a2dd004 Mon Sep 17 00:00:00 2001 From: hochan222 Date: Sun, 29 Sep 2024 20:52:34 +0900 Subject: [PATCH 6/7] =?UTF-8?q?fix:=20=EC=9E=98=EB=AA=BB=EB=90=9C=20?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EA=B2=BD=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: rosaceaee --- .../ko/web/api/htmlelement/tabIndex/index.md | 46 ------------------- 1 file changed, 46 deletions(-) delete mode 100644 files/ko/web/api/htmlelement/tabIndex/index.md diff --git a/files/ko/web/api/htmlelement/tabIndex/index.md b/files/ko/web/api/htmlelement/tabIndex/index.md deleted file mode 100644 index 3c1db6a1af5f95..00000000000000 --- a/files/ko/web/api/htmlelement/tabIndex/index.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: "HTMLElement: tabIndex 속성" -slug: Web/API/HTMLElement/tabIndex -l10n: - sourceCommit: a3d9f61a8990ba7b53bda9748d1f26a9e9810b18 ---- - -{{APIRef("HTML DOM")}} - -**`tabIndex`** 는 현재 요소의 탭 순서를 나타내는 {{DOMxRef("HTMLElement")}} 인터페이스입니다. - -탭 순서는 다음과 같습니다. - -1. `tabIndex`가 양수인 요소인 경우. - 동일한 `tabIndex`값을 가진 요소들은 나타나는 순서대로 탐색되어야 합니다. - 탐색은 가장 낮은 `tabIndex`에서 가장 높은 `tabIndex`로 진행됩니다. -2. `tabIndex` 속성을 지원하지 않거나 지원하면서 `tabIndex`를 `0`으로 지정한 요소들은 나타나는 순서대로 탐색됩니다. - -비활성화된 요소들은 탭 순서에 참여하지 않습니다. - -값은 순차적일 필요가 없으며, 특정 값으로 시작할 필요도 없습니다. 값은 음수일 수도 있지만, 각 브라우저는 매우 큰 값을 잘라냅니다. - -## 값 - -정수 - -## 예제 - -```js -const b1 = document.getElementById("button1"); - -b1.tabIndex = 1; -``` - -## 명세서 - -{{Specifications}} - -## 브라우저 호환성 - -{{Compat}} - -## 같이 보기 - -- [Accessibility of keyboard-navigable JavaScript widgets](/ko/docs/Web/Accessibility/Keyboard-navigable_JavaScript_widgets) -- HTML 전역 특성 [`tabindex`](/ko/docs/Web/HTML/Global_attributes/tabindex) From 4a2d5a12bef669258529cadb097909d0306ab5f7 Mon Sep 17 00:00:00 2001 From: hochan222 Date: Sun, 29 Sep 2024 20:53:11 +0900 Subject: [PATCH 7/7] =?UTF-8?q?fix:=20=EC=9E=98=EB=AA=BB=EB=90=9C=20?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=20=EA=B2=BD=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: rosaceaee --- .../ko/web/api/htmlelement/tabindex/index.md | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 files/ko/web/api/htmlelement/tabindex/index.md diff --git a/files/ko/web/api/htmlelement/tabindex/index.md b/files/ko/web/api/htmlelement/tabindex/index.md new file mode 100644 index 00000000000000..3c1db6a1af5f95 --- /dev/null +++ b/files/ko/web/api/htmlelement/tabindex/index.md @@ -0,0 +1,46 @@ +--- +title: "HTMLElement: tabIndex 속성" +slug: Web/API/HTMLElement/tabIndex +l10n: + sourceCommit: a3d9f61a8990ba7b53bda9748d1f26a9e9810b18 +--- + +{{APIRef("HTML DOM")}} + +**`tabIndex`** 는 현재 요소의 탭 순서를 나타내는 {{DOMxRef("HTMLElement")}} 인터페이스입니다. + +탭 순서는 다음과 같습니다. + +1. `tabIndex`가 양수인 요소인 경우. + 동일한 `tabIndex`값을 가진 요소들은 나타나는 순서대로 탐색되어야 합니다. + 탐색은 가장 낮은 `tabIndex`에서 가장 높은 `tabIndex`로 진행됩니다. +2. `tabIndex` 속성을 지원하지 않거나 지원하면서 `tabIndex`를 `0`으로 지정한 요소들은 나타나는 순서대로 탐색됩니다. + +비활성화된 요소들은 탭 순서에 참여하지 않습니다. + +값은 순차적일 필요가 없으며, 특정 값으로 시작할 필요도 없습니다. 값은 음수일 수도 있지만, 각 브라우저는 매우 큰 값을 잘라냅니다. + +## 값 + +정수 + +## 예제 + +```js +const b1 = document.getElementById("button1"); + +b1.tabIndex = 1; +``` + +## 명세서 + +{{Specifications}} + +## 브라우저 호환성 + +{{Compat}} + +## 같이 보기 + +- [Accessibility of keyboard-navigable JavaScript widgets](/ko/docs/Web/Accessibility/Keyboard-navigable_JavaScript_widgets) +- HTML 전역 특성 [`tabindex`](/ko/docs/Web/HTML/Global_attributes/tabindex)