一、javascript页面刷新重载的方法:
点击重新载入页面
点击重新载入页面
点击重新载入页面
点击重新载入页面
点击重新载入页面
点击重新载入页面
点击重新载入页面
点击重新载入页面
点击重新载入页面
点击重新载入页面
点击重新载入页面
二、html链接重新载入方法
点击重新载入页面
点击重新载入页面
三、自动刷新页面的方法
//代码放在head中,每隔20秒钟刷新一次
//20秒之后页面跳转到百度中,通常运用到404页面
//js自动刷新
function myrefresh()
{
window.location.reload();
}
setTimeout('myrefresh()',1000); //指定1秒刷新一次
三、返回上一页和下一页的方法
history.go(-1)//返回上一页(括号中写-2代表返回上两页)
history.back()//返回上一页
window.history.forward() //返回下一页
文章评论