实现页面的后退、刷新、前进

实现页面的后退、刷新、前进
 
<html>
<head>
    <title>实现页面的后退、刷新、前进</title>
<script language="javascript">
function back()
{
    history.go(-1);  //后退1页
}
function forward()
{
    history.go(+1);  //前进1页
}
function refresh()
{
    history.go(-0)  //刷新
}
</script>
</head>

<body>
<input type=button value=后退 onclick="back()">
<input type=button value=刷新 onclick="refresh()">
<input type=button value=前进 onclick="forward()">
  <br/><p>内容</p>
</body>
</html>
上一篇:URL刷新工具(绿色版) > 也许对你有用哦~~!


下一篇:CMS