超链接示例
源码
<a href="javascript:history.go(-1);" target="_self"> 后退 </a>
<a href="javascript:history.go(+1);" target="_self"> 前进 </a>
<a href="javascript:history.go(-0);" target="_self"> 刷新 </a>
按钮示例
源码
<input type=button value='后退' onclick="back()">
<input type=button value='前进' onclick="forward()">
<input type=button value='刷新' onclick="refresh()">
<script>
function back()
{
history.go(-1); //后退
}
function forward()
{
history.go(+1); //前进
}
function refresh()
{
history.go(-0) //刷新
}
</script>