rogerxu / rogerxu.github.io

Roger Xu's Blog
2 stars 2 forks source link

Hash and History #212

Open rogerxu opened 6 years ago

rogerxu commented 6 years ago
rogerxu commented 6 years ago

Hash

Change hash

const hash = location.hash;
location.hash = hash;
location.replace(hash);

hashchange Event

rogerxu commented 6 years ago

History API

history.pushState();
history.replaceState();

popstate Event

window.addEventListener('popstate', function(evt) {
}, false);