Home > Web Front-end > JS Tutorial > window.event.keyCode is compatible with IE and Firefox to implement js code_javascript skills

window.event.keyCode is compatible with IE and Firefox to implement js code_javascript skills

WBOY
Release: 2016-05-16 17:32:59
Original
997 people have browsed it

HTML code

Copy code The code is as follows:



Javascript code
Copy code The code is as follows:

function keyNumAll(evt){
//Compatible with IE and Firefox to obtain the keyBoardEvent object
evt = (evt) ? evt : ((window.event) ? window.event : "" );
var key = evt.keyCode?evt.keyCode:evt.which;//Compatible with IE and Firefox to obtain the key value of the keyBoardEvent object
console.info(key);//Display the key value
}
}
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template