En Web API hay elementos que tienen el atributo accesskey. Para obtener este atributo de clave de acceso, usamos la propiedad HTMLElement.accessKeyLabel , que devuelve una string asignada al atributo de clave de acceso del elemento.
Sintaxis:
label = element.accessKeyLabel
Nota: Si no se proporciona el valor del atributo de clave de acceso, devuelve una string vacía.
Ejemplo: Atributo de altura establecido en 300
<!DOCTYPE html> <html> <head> <style> a:focus { background-color: magenta; } </style> <script type="text/javascript"> function getaccesskey() { var label = document.getElementById('btn'); document.getElementById( 'access').innerHTML = label.accessKeyLabel; } </script> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>HTML Element accessKeyLabel property</h2> <button accesskey="g" onclick="getaccesskey();" id="btn"> Get accessKeyLabel </button> <p id='access'></p> </center> </body> </html>
Producción:
Haga clic en el botón:
Cuando se hace clic en el botón:
Navegadores compatibles:
- firefox 8