TOP ▲ itcore TOPTIPSreload.php  タグ:画面自動更新

画面を自動更新する。HTML, JavaScript | itcore 2017年

<script>
// 10秒ごとにリロードします。<br>
var timer = "10000"; //指定ミリ秒単位
function ReloadPage(){
  window.location.reload();
}
setTimeout(ReloadPage, timer);
</script>