jquery绑定Esc键事件

操作键盘Esc键触发的事件

//Esc键
$(document).keyup(function(e){
    var key =  e.which || e.keyCode;;
    if(key == 27){
         $('#head_wrap .show-msg').eq(0).addClass('active').siblings().removeClass('active');
         ktapi.i_stopCmd();
    }
});

你可能感兴趣的:(前端技术)