比如我按返回键退出,然后就提示是否要退出?🤤
function gloBalEscFun(e){ if(e.which==27){ var isDetermine = confirm("是否要退出") if(isDetermine ==true){ //确定动作 }else{ //取消动作 } } } window.onkeydown = gloBalEscFun