如何截取这两个键:“:”和“。”?
当用户按 . 时,我需要执行某些操作,当用户按 : 时,我需要执行其他操作。
有没有办法用 JavaScript、jQuery 或其他方法拦截这两个键?
I need to do something when a user presses . and something else when an user presses :.
Is there a way to intercept these two keys with JavaScript, jQuery or other?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您想在整个文档中拦截这些键:
Marcel Korpel 在注释中正确地指出,不使用
String.fromCharCode()
调用会更有效;这是一个没有以下版本的版本:Assuming you want to intercept these keys on the whole document:
Marcel Korpel rightly points out in the comments that it's more efficient not to use the
String.fromCharCode()
call; here's a version without: