Home > Web Front-end > JS Tutorial > Javascript event hotkey compatible with ie|firefox_javascript tips

Javascript event hotkey compatible with ie|firefox_javascript tips

WBOY
Release: 2016-05-16 18:13:01
Original
841 people have browsed it
Copy code The code is as follows:


<script> <br>function keyHanlder(e){ <br>if(e.ctrlKey&&e.keyCode==13){ <br>alert('"Ctrl Enter"'); <br>if(e.preventDefault)e.preventDefault(); <br>else e.returnValue=false; <br>} <br>} <br></script>


The function called by non-IE browsers will automatically return the parameter event, through which the keyboard can be obtained
Copy the code The code is as follows:


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