时间:2021-07-01 10:21:17 帮助过:2人阅读
1,页面自动刷新:把如下代码加入<head>区域中
<meta http-equiv="refresh" content="20"> //其中20指每隔20秒刷新一次页面.
2,页面自动跳转:把如下代码加入<head>区域中
<meta http-equiv="refresh" content="20;url=http://www.gxlcms.com">
其中20指隔20秒后跳转到http://www.gxlcms.com页面
3,页面自动刷新js版
<script language="JavaScript">function myrefresh() { window.location.reload(); } setTimeout('myrefresh()',1000); //指定1秒刷新一次</script>
相关推荐:
使用JavaScript刷新网页的方法_基础知识
以上就是js刷新网页的方法分享的详细内容,更多请关注Gxl网其它相关文章!