网站地图    收藏   

主页 > 前端 > javascript >

js定时刷新页面方法总结

来源:自学PHP网    时间:2014-09-19 14:47 作者: 阅读:

[导读] 本文章总结了两利用js定时刷新页面实现程序代码,一种是利用settimeout()函数,一种是利用了利用meta中的Refresh刷新方法。...

定时刷新:

1,利用setTimeout

 代码如下 复制代码

<script language="JavaScript">
function myrefresh()
{
       window.location.reload();
}
setTimeout('myrefresh()',1000); //指定1秒刷新一次
</script>

说明:url是要刷新的页面URL地址

2000是等待时间=2秒,

2,利用meta中的Refresh刷新

 代码如下 复制代码

< meta name="Refresh" content="n; url"> 说明:

n is the number of seconds to wait before loading the specified URL.

url is an absolute URL to be loaded.

n,是等待的时间,以秒为单位

url是要刷新的页面URL地址


Javascript刷新页面的几种方法:

 代码如下 复制代码

1    history.go(0)
2    location.reload()
3    location=location
4    location.assign(location)
5    document.execCommand('Refresh')
6    window.navigate(location)
7    location.replace(location)
8    document.URL=location.href

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论