响应键盘回车键事件

兼容IE,firefox,chrome




//响应回车事件

    function doKeyDown()
    {
        if (document.all){ //如果是IE
            if (window.event.keyCode == 13)
            {
                check();
            }
        }else{//其他浏览器
            document.addEventListener("keypress",otherBrowser, true);
            
        }

    }


function otherBrowser(evt)
    {
        if(evt.keyCode==13){
            check();
        }
        
    }



你可能感兴趣的:(js)