javascript提供前进、后退功能
提供前进、后退功能
< form >
< input type='button' value='<-'
onclick='history.go(-1) >
< input type='button' value='->'
onclick='history.go(1) >
< /form >
在使用window.history.go(-1)返回上页的同时刷新上页,怎么才能做到呢?
只能在所谓的“上页”刷新
强制载入后刷新一次
加入以下代码:
<script>
if(window.name != "bencalie"){
location.reload();
window.name = "bencalie";
}
else{
window.name = "";
}
</script>
也可禁止缓存,重新进入页面
<meta http-equiv="Expires" CONTENT="0">
<meta http-equiv="Cache-Control" CONTENT="no-cache">
<meta http-equiv="Pragma" CONTENT="no-cache">
返回上一页代码:
<a href="Javascript:window.history.go(-1)">返回上一页</a>
当然也能用location.hert