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