3

在撰写本文时,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?

4

1 回答 1

0

这是 WebKit 中未实现的功能(已知错误):
https ://bugs.webkit.org/show_bug.cgi?id=72715

于 2013-12-29T15:47:34.713 回答