如何注册 document.onkeypress 事件

15 浏览
0 Comments

如何注册 document.onkeypress 事件

我想用JavaScript为文档注册按键事件。

我尝试了以下方法:

document.attachEvent("onkeydown", my_onkeydown_handler);

它在IE中运行良好,

但在Firefox和Chrome中却不行。

我还尝试了:

document.addEventListener("onkeydown", my_onkeydown_handler, true); 
// (也尝试了false值)

但在Firefox和Chrome中仍然不起作用。

有解决方法吗?我有遗漏什么吗?

0