在撰写本文时,Webkit 不支持accessKeyLabel(但在 Firefox 中可以正常工作)。此片段显示发生了什么:
<input type="text" accesskey="D" name="dog" id="dog">
var dogInput = document.getElementById('dog');
console.log(dogInput.accessKey);
// Firefox, Webkit both output: "D"
console.log(dogInput.accessKeyLabel);
// Firefox output: "[ACCESS MODIFIER] D"
// Webkit output: undefined
是否有另一种方法可以在 Webkit 中获取访问修饰符组合或 accessKeyLabel?