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