Last active
August 29, 2015 14:06
-
-
Save chiehwen/1b930bf5be633e5528a9 to your computer and use it in GitHub Desktop.
自動重載頁面
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>自動重載頁面</title> | |
<meta http-equiv="Content-Type" content="text/html"; charset="UTF-8"/> | |
<!-- <meta http-equiv="refresh" content="2"> 加入這行 meta 可以達到同樣的功能,2 指的是每隔 2 秒重載一次頁面--> | |
<script type="text/javascript" src="./scripts/main.js"></script> | |
</head> | |
<body> | |
<p>網頁重載中...</p> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
function fresh() { | |
window.location.reload(); | |
}; | |
setTimeout(fresh(), 1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment