简体   繁体   中英

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

I want to ask how can someone read keystrokes while in a html page without having focus in a particular field. Is there some event that i can hook a method that reads input?

Thanks in advance.

PS. We use JQuery if that helps.

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

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

jQuery offers for these events, eg,

$(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,

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM