Home  >  Article  >  Web Front-end  >  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
WBOYOriginal
2016-05-16 17:32:59950browse

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
}
}
Statement:
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