JavaScript 自动刷新页面

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
	<title>自动刷新页面</title>
	<meta name="keywords" http-equiv="Content-Type" content="text/html;charset=UTF-8">
	<meta name="description" content="#">
	<script type="text/javascript">
		//刷新网页的函数
		function fresh(){
			window.location.reload();	//调用location的reload函数
		}
		setTimeout('fresh()', 10000);
	</script>
</head>
<body style="text-align: center;">
    <p>网页自动刷新</p>


</body>
</html>

本例演示了通过 JavaScript 来实现自动刷新网页的功能,其实在网页的头部标签中加入这样的代码,也可以实现相同的功能。

<meta http-equiv="refresh" Content="20">

其中 20 指的是每隔 20 秒刷新一次页面。