aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/htmlelement/accesskeylabel/index.html
blob: 110cf039667caf3aefc722949b166008bc077a3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
title: accessKeyLabel
slug: Web/API/HTMLElement/accessKeyLabel
translation_of: Web/API/HTMLElement/accessKeyLabel
---
<div>
<div>{{ APIRef("HTML DOM") }}</div>
</div>

<p><strong><code>HTMLElement.accessKeyLabel</code></strong> 읽기 전용 속성은 엘리먼트의 할당된 접근키를 나타내는 {{jsxref("String")}} 를 반환합니다. 존재하지 않는 경우 빈 문자열을 반환합니다.</p>

<h2 id="Syntax" name="Syntax">구문</h2>

<pre class="syntaxbox"><em>label</em> = <em>element</em>.accessKeyLabel
</pre>

<h2 id="Example" name="Example">예시</h2>

<h3 id="JavaScript">JavaScript</h3>

<pre class="brush: js">var node = document.getElementById('btn1');
if (node.accessKeyLabel) {
  node.title += ' [' + node.accessKeyLabel + ']';
} else {
  node.title += ' [' + node.accessKey + ']';
}

node.onclick = function () {
  var p = document.createElement('p');
  p.textContent = 'Clicked!';
  node.parentNode.appendChild(p);
};
</pre>

<h3 id="HTML">HTML</h3>

<pre class="brush: html">&lt;button accesskey="h" title="Caption" id="btn1"&gt;Hover me&lt;/button&gt;
</pre>

<h3 id="Result">Result</h3>

<p>{{ EmbedLiveSample('Example') }}</p>

<h2 id="명세">명세</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">명세</th>
   <th scope="col">상태</th>
   <th scope="col">코멘트</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG', "interaction.html#dom-accesskeylabel", "HTMLElement.accessKeyLabel")}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td>초기 정의로부터 변경 사항 없음.</td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5.1')}}</td>
   <td>{{Spec2('HTML5.1')}}</td>
   <td>제거됨. <a href="https://github.com/w3c/html/pull/144">pull w3c/html#144</a><a href="https://github.com/w3c/html/issues/99">issue w3c/html#99</a><a href="https://discourse.wicg.io/t/accesskeylabel-author-accessible-info-about-shortcuts/1392/3">WICG discussion</a>.</td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5 W3C', "editing.html#dom-accesskeylabel", "HTMLElement.accessKeyLabel")}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td>{{SpecName('HTML WHATWG')}}, 초기 정의의 스냅샷.</td>
  </tr>
 </tbody>
</table>

<h2 id="브라우저_호환성">브라우저 호환성</h2>

<div>


<p>{{Compat("api.HTMLElement.accessKeyLabel")}}</p>
</div>

<h2 id="함께_보기">함께 보기</h2>

<ul>
 <li>{{domxref("element.accessKey")}}</li>
 <li><a href="https://developer.mozilla.org/ko/docs/Web/HTML/Global_attributes/accesskey">accesskey</a> 전역 속성.</li>
</ul>