使用html或javascript实现F5密钥

时间:2015-07-26 18:34:37

标签: javascript html

我尝试过以下代码:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-     revalidate">
<meta http-eq`enter code here`uiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0"> 
<meta http-equiv="Last-Modified" content="Sun, 26 Jul 2015 23:12:00 GMT"> 
<meta http-equiv="refresh" content="10"> 
</head>
<body>
<h1>This is a Headi</h1>
<p>This is a paragraph.</p>
</body>
</html>

并且还试过了location.reload(true)代码的实现,这两个都在我的情况下工作,即他们正在重新加载页面而不是实际刷新它。输出最初打印身体但10秒后是一个空白页:(

我想通过脚本实现F5的功能,而不是重新加载。

1 个答案:

答案 0 :(得分:0)

您必须在内容中添加“10”后的网址:

<meta http-equiv="refresh" content="10; URL=http://www.example.com/index.html">