LoginSignup
88

More than 5 years have passed since last update.

JavaScript 現在のページをリロードしたい

Last updated at Posted at 2015-11-13

知らなかった....のでメモ

hoge

// 現在表示されているページをリロードする
location.reload();

// 例: 5秒に一回リロード
setTimeout("location.reload()",5000);

/*
ブラウザの[更新]ボタンを押したときと同じ動作です。

location.reload(true)とするとWEBサーバのデータからリロード、 

location.reload(false)とするとキャッシュからリロード。
*/

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
88