12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <html>
- <head>
- </head>
- <body>
- <script type="text/javascript">
- (function(){
- window.onpopstate = function(event) {
- console.log("onpopstate: location: " + document.location.href + ", data: " + JSON.stringify(event.state));
- };
- window.onhashchange = function(event) {
- console.log("onhashchange: location: " + document.location.href);
- };
- setTimeout(function(){
- history.pushState({page: 1}, "title 1", "?page=1");
- },1e3);
- setTimeout(function(){
- history.pushState({page: 2}, "title 2", "?page=2");
- },2e3);
- setTimeout(function(){
- history.replaceState({page: 3}, "title 3", "?page=3");
- },3e3);
- setTimeout(function(){
- document.location.hash = 'asd';
- },4e3);
- setTimeout(function(){
- history.back();
- },5e3);
- setTimeout(function(){
- history.back();
- },6e3);
- setTimeout(function(){
- history.back();
- },7e3);
- setTimeout(function(){
- history.go(2);
- },8e3);
- })();
- </script>
- </body>
- </html>
|