This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

accessKeyLabel

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

HTMLElement.accessKeyLabel 읽기 전용 속성은 엘리먼트의 할당된 접근키를 나타내는 String 를 반환합니다. 존재하지 않는 경우 빈 문자열을 반환합니다.

구문

js
label = element.accessKeyLabel;

예시

JavaScript

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);
};

HTML

html
<button accesskey="h" title="Caption" id="btn1">Hover me</button>

Result

명세

Specification
HTML
# dom-accesskeylabel

브라우저 호환성

함께 보기