MyTetra Share
Делитесь знаниями!
How to reload a page using JavaScript?
Время создания: 23.07.2018 09:57
Текстовые метки: javascript reload page
Раздел: Javascript
Запись: Velonski/mytetra-database/master/base/1532321876chjpvx2teo/text.html на raw.githubusercontent.com

How can I reload the page using JavaScript? I need a method that works in all browsers.


Answer.


JavaScript 1.0


window.location.href = window.location.pathname + window.location.search + window.location.hash;

// creates a history entry


JavaScript 1.1


window.location.replace(window.location.pathname + window.location.search + window.location.hash);

// does not create a history entry


JavaScript 1.2


window.location.reload(false);

// If we needed to pull the document from

// the web-server again (such as where the document contents

// change dynamically) we would pass the argument as 'true'.

Так же в этом разделе:
 
MyTetra Share v.0.59
Яндекс индекс цитирования