Home >Web Front-end >JS Tutorial >JS defines carriage return event (implementation code)_javascript skills

JS defines carriage return event (implementation code)_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:29:401185browse

Copy code The code is as follows:

$(function () {
                                           Enter event
if (document.addEventListener) {//If it is Firefox
document.addEventListener("keypress", fireFoxHandler, true);
}
else {
document.attachEvent( "onkeypress", ieHandler);
           }

function fireFoxHandler(evt) {

if (evt.keyCode == 13) {

                  $("#btnLogin"                                                                                                                                                                                                                                                                        ​ 
                                                                                                                                      🎜> });

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