Computer >> Máy Tính >  >> Lập trình >> HTML

HTML DOM accessKey Property

Thuộc tính HTML DOM accessKey được sử dụng để đặt thuộc tính accessKey của một phần tử. Tuy nhiên, thuộc tính khóa truy cập trong HTML được sử dụng để đặt phím tắt để kích hoạt hoặc tập trung vào một phần tử.

Sau đây là cú pháp để đặt thuộc tính accessKey -

HTMLElementObject.accessKey = char

Ở trên, char là phím tắt.

Sau đây là cú pháp để trả về thuộc tính accessKey -

HTMLElementObject.accessKey

Trên Windows, đặt khóa truy cập cho các trình duyệt khác nhau -

Trình duyệt web Hệ điều hành Windows
Safari [Alt] + phím truy cập
Chrome [Alt] + phím truy cập
Firefox Alt] [Shift] + phím truy cập

Bây giờ chúng ta hãy xem một ví dụ để triển khai thuộc tính khóa truy cập trên trình duyệt web Chrome trên Windows -

Ví dụ

<!DOCTYPE html>
<html>
<body>
<a id="myid" accesskey="g" href="https://www.google.com/">Google</a>
<p>Get the accessKey</p>
<button onclick="display()">Click and display the accesskey</button>
<p id="pid"></p>
<script>
function display() {
   var a = document.getElementById("myid").accessKey;
      document.getElementById("pid").innerHTML = a;
   }
</script>
</body>
</html>

Đầu ra

HTML DOM accessKey Property

Nhấp vào nút trên để hiển thị accessKey -

HTML DOM accessKey Property