1,返回上N页
Javascript 返回上一页history.go(-1), 返回两个页面: history.go(-n);
2,返回下一页
window.history.forward()
3,页面自动刷新
<meta http-equiv="refresh" content="20"> //每隔20秒刷新一次
4,页面自动跳转:把如下代码加入<head>区域中
<meta http-equiv="refresh" content="20;url=http://www.javaeye.com"> //每隔20秒跳转到http://www.javaeye.com
5,页面自动刷新JS版
<script language="JavaScript">
function myrefresh()
{
window.location.reload();
}
setTimeout('myrefresh()',1000); //指定1秒刷新一次
</script>