programmazione javascript
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<script> const nextURL = 'https://my-website.com/page_b'; const nextTitle = 'My new page title'; const nextState = { additionalInformation: 'Updated the URL with JS' }; // This will create a new entry in the browser's history, without reloading window.history.pushState(nextState, nextTitle, 'https://mstc.sytes.net/mywebsite.com/page_b'); //location = "https://mstc.sytes.net"; // This will replace the current entry in the browser's history, without reloading //window.history.replaceState(nextState, nextTitle, nextURL); </script> |