“Zmień adres URL według JQuery bez strony odświeżania” Kod odpowiedzi

Zmień adres URL według JQuery bez strony odświeżania

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

Zmień adres URL według JQuery bez strony odświeżania

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

Odpowiedzi podobne do “Zmień adres URL według JQuery bez strony odświeżania”

Pytania podobne do “Zmień adres URL według JQuery bez strony odświeżania”

Więcej pokrewnych odpowiedzi na “Zmień adres URL według JQuery bez strony odświeżania” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu