How to read input in a html page with javascript without focus in one field

此生再无相见时 提交于 2019-12-02 11:19:17

Use document.onkeypress (or the siblings onkeydown and onkeyup):

document.onkeypress = function (event) { ... };

jQuery offers for these events, e.g.,

$(document).keypress (function (event) { ... });

This will catch all key press events on your site. Inside the function you can get the numeric code of the pressed key with event.keyCode. Be aware, that there are some browser incompatibilities, especially with the keypress event. See developer.mozilla.com for how FF handles it.

Cheers,

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!