当前位置: 代码迷 >> Web前端 >> 页面跳转不封存历史轨迹
  详细解决方案

页面跳转不封存历史轨迹

热度:142   发布时间:2012-11-09 10:18:47.0
页面跳转不保存历史轨迹
<html>
<head>
<title>wow</title>
<script type="text/javascript">
function replaceURL(){
	//历史记录不被保存,将无法实现‘后退’
	location.replace('http://www.baidu.com');
}
</script>
</head>
<body>

<a href="http://www.baidu.com">baidu</a>
<button onclick="replaceURL()" >replace</button>
</body>
</html>
  相关解决方案