有没有一种通用的方法可以知道用户是否按住 CTRL 键?
JQuery 或 Javascript 中有没有办法知道用户是否在 keyPress、keyUp 等事件之外的任何时候按住 CTRL 键?
谢谢
Is there a way in JQuery or Javascript to know whether or not the user is holding the CTRL key at any point outside of events such as keyPress, keyUp and etc?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,恐怕没有。
No, I am afraid that there isn't.
不幸的是,没有办法实现这一点。
一个好的解决方案是在全局中保存状态
变量,由您提到的事件切换,并在需要时检查。
Unfortunately, there's no way to achieve that.
A good solution is to save the state in a global
variable, switched by the events you mentioned, and check that when you need it.