📌  相关文章
📜  通过 jquery 更改 url 而无需刷新页面 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:19.238000             🧑  作者: Mango

代码示例2
// Current URL: https://my-website.com/page_a
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, nextURL);

// This will replace the current entry in the browser's history, without reloading
window.history.replaceState(nextState, nextTitle, nextURL);