Google Chrome 上的 Ctrl +c 和 Backspace
我有一个应用程序,我正在其中侦听 iFrame 中的 KeyPress 事件。在 Google Chrome 和 IE 上,CTRL+C 和退格键永远不会触发按键事件。退格键将我带到上一页,并且 CTRL+C 根本没有被捕获。
请告诉我是否有任何现有的解决方案。
I have an application in which I am listening for KeyPress events in an iFrame. On Google Chrome and IE, CTRL+C and backspace never trigger the key press event. Backspace takes me to the previous page and CTRL+C is not captured at all.
Please let me know if there's any existing solution for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在监听 Keypress 事件,事实证明,在 Chrome 上,某些事件是通过 Keydown 或 Keyup 事件触发的。
I was listening on Keypress events, it turns out that on Chrome some of the events trigger through Keydown or Keyup events.