“Redirecionar para o site JavaScript” Respostas de código

Redirecionar 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

Redirecionar para o site JavaScript

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

Redirecionar com JavaScript

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

Como faço para redirecionar para outra página da web usando 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

Respostas semelhantes a “Redirecionar para o site JavaScript”

Perguntas semelhantes a “Redirecionar para o site JavaScript”

Mais respostas relacionadas para “Redirecionar para o site JavaScript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código