一定時間ごとに再読み込み(setInterval, location.reload)
<html>
<head>
<title>一定時間ごとに再読み込み</title>
<script language="JavaScript">
<!--
//タイマーをセット
function tm(){
tm = setInterval("location.reload()",60000);
}
//-->
</script>
</head>
<body onLoad="tm()">
60秒ごとに再読み込み。<br>
</body>
</html>
〔 実行する 〕