“Altere o URL por jQuery sem página de atualização” Respostas de código

Altere o URL por jQuery sem página de atualização

// 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);

Altere o URL por jQuery sem página de atualização

// 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);

Respostas semelhantes a “Altere o URL por jQuery sem página de atualização”

Perguntas semelhantes a “Altere o URL por jQuery sem página de atualização”

Procure respostas de código populares por idioma

Procurar outros idiomas de código