HTML网页实现自动刷新

Posted 流楚丶格念

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML网页实现自动刷新相关的知识,希望对你有一定的参考价值。

1.添加meta标签

<!-- 其中5是指每隔5s刷新一次页面 -->
<meta http-equiv="refresh" content="5">

用meta标签也跳转到指定页面

<meta http-equiv="refresh" content="10;url=http://www.51jfgou.com">

2.添加script标签,写入刷新语句

可以封装成函数

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

也可以直接用

<script type="text/javascript">
setTimeout(function(){
	window.location.reload()
},1000); //指定1秒刷新一次
</script>

代码示例:

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<!-- 其中5是指每隔5s刷新一次页面 
	<meta http-equiv="refresh" content="5">-->
	<title>刷新</title>
	<script type="text/javascript">
		function myrefresh(){
			window.location.reload();
		}
		//指定1s刷新一次
		setTimeout('myrefresh()',1000);
	</script> 
</head>
<body>
	<h1>大大大大 页面</h1>
</body>
</html>

以上是关于HTML网页实现自动刷新的主要内容,如果未能解决你的问题,请参考以下文章

HTML网页实现自动刷新

用php怎么实现每刷新一次网页,背景颜色自动切换,且输出当前颜色代码​

关于网页自动刷新代码

网页页面实现自动刷新的3种代码

HTML代码片段

HTML代码片段