使用 JavaScript 和 jQuery,跨浏览器处理按键事件 (F1-F12)

Handling key-press events (F1-F12) using JavaScript and jQuery, cross-browser(使用 JavaScript 和 jQuery,跨浏览器处理按键事件 (F1-F12))
本文介绍了使用 JavaScript 和 jQuery,跨浏览器处理按键事件 (F1-F12)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我想使用 JavaScript 和 jQuery 处理 F1-F12 键.

I want to handle F1-F12 keys using JavaScript and jQuery.

我不确定要避免哪些陷阱,而且我目前无法在 Internet Explorer 8、Google Chrome 和 Mozilla FireFox 3 之外的任何其他浏览器中测试实现.

I am not sure what pitfalls there are to avoid, and I am not currently able to test implementations in any other browsers than Internet Explorer 8, Google Chrome and Mozilla FireFox 3.

对完整的跨浏览器解决方案有什么建议吗?类似于经过良好测试的 jQuery 库,或者只是普通的 jQuery/JavaScript?

Any suggestions to a full cross-browser solution? Something like a well-tested jQuery library or maybe just vanilla jQuery/JavaScript?

推荐答案

这类问题的最佳来源是这个页面:http://www.quirksmode.org/js/keys.html

The best source I have for this kind of question is this page: http://www.quirksmode.org/js/keys.html

他们说的是 Safari 上的键码很奇怪,其他地方都一致(除了 IE 上没有按键事件,但我相信 keydown 有效).

What they say is that the key codes are odd on Safari, and consistent everywhere else (except that there's no keypress event on IE, but I believe keydown works).

这篇关于使用 JavaScript 和 jQuery,跨浏览器处理按键事件 (F1-F12)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do I can get a text of all the cells of the table using testcafe(如何使用 testcafe 获取表格中所有单元格的文本)
node_modules is not recognized as an internal or external command(node_modules 未被识别为内部或外部命令)
How can I create conditional test cases using Protractor?(如何使用 Protractor 创建条件测试用例?)
PhantomJS and clicking a form button(PhantomJS 并单击表单按钮)
Clicking #39;OK#39; on alert or confirm dialog through jquery/javascript?(在警报上单击“确定或通过 jquery/javascript 确认对话框?)
QunitJS-Tests don#39;t start: PhantomJS timed out, possibly due to a missing QUnit start() call(QunitJS-Tests 不启动:PhantomJS 超时,可能是由于缺少 QUnit start() 调用)