使用 alt +转变+ a 作为 IE 7/8 中的热键
我正在尝试在文档对象上附加一个 keyup 侦听器。我想知道用户何时按下 alt + shift + a 或 alt + shift + w。两者都适用于 Chrome 和 Firefox。在 IE 中, alt + shift + w 有效,但 alt + shift + a 没有。我知道 IE 保留了很少的热键,但为什么还要接管 alt + shift 组合呢?有没有办法阻止这种情况,或者这是 IE 中的一个流程?
I am trying to attach an keyup listener on document object. I want to know when user presses alt + shift + a or alt + shift + w. Both work in Chrome and Firefox. In IE, alt + shift + w works, but alt + shift + a doesn't. I know IE has few hot keys reserved, but why is taking over alt + shift combination, too? Is there a way to prevent this or is it a flow in IE?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
keydown
事件来解决此问题。http://jsfiddle.net/HnD5E/4/
You can get around this behavior with a
keydown
event.http://jsfiddle.net/HnD5E/4/