waj952737 发表于 2013-1-29 09:28:44

禁止浏览器后退

清除缓存
<meta http-equiv="Expires" CONTENT="0">         
<meta http-equiv="Cache-Control" CONTENT="no-cache">         
<meta http-equiv="Pragma" CONTENT="no-cache">   
抵消后退
<script type="text/javascript">
javascript:window.history.forward(1);
</script>

<body onbeforeunload="history.go(0)">

//禁止F5使用刷新
document.onkeydown = function(){         
if(event.keyCode==116){         
event.keyCode = 0;         
event.cancelBubble = true;         
return false;         
}         
}
//禁止右键弹出菜单
document.oncontextmenu = function(){         
return   false;         
}
页: [1]
查看完整版本: 禁止浏览器后退