“Przekierowanie do JavaScript strony internetowej” Kod odpowiedzi

Przekierowanie JavaScript

// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");

// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";
FloatDev

Przekierowanie do JavaScript strony internetowej

window.location.href = "http://mywebsite.com/home.html";
Grepper

Przekieruj za pomocą JavaScript

window.location.replace('http://mywebsite.com/home.html');
Spyder

Jak przekierować na inną stronę internetową za pomocą JavaScript

window.location.href; // Returns the href (URL) of the current page
window.location.hostname; // Returns the domain name of the web host
window.location.pathname; // Returns the path and filename of the current page
window.location.protocol; // Returns the web protocol used (http: or https:)
window.location.assign; // Loads a new document
window.location.replace; // RReplace the current location with new one.
Himanshu Jangid

Odpowiedzi podobne do “Przekierowanie do JavaScript strony internetowej”

Pytania podobne do “Przekierowanie do JavaScript strony internetowej”

Więcej pokrewnych odpowiedzi na “Przekierowanie do JavaScript strony internetowej” w JavaScript

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

Przeglądaj inne języki kodu