“Ändern Sie die URL mit jQuery ohne Aktualisierung Seite” Code-Antworten

Ändern Sie die URL mit jQuery ohne Aktualisierung Seite

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

Ändern Sie die URL mit jQuery ohne Aktualisierung Seite

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

Ähnliche Antworten wie “Ändern Sie die URL mit jQuery ohne Aktualisierung Seite”

Fragen ähnlich wie “Ändern Sie die URL mit jQuery ohne Aktualisierung Seite”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen