“JavaScript redireciona para URL” Respostas de código

JavaScript redireciona para URL

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

JavaScript Redirecion

<script>
  window.location.href = "http://mywebsite.com/home.html";
</script>
Bored Beaver

JavaScript redireciona para URL

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

Redirecionar com JavaScript

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

JavaScript Redirecion

<p onclick="myFunction()"></p>
<script>
function myFunction() {
	  window.location.href = "https://whereyouwouldliketogo.com"
}
</script>
Donald Duck

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 “JavaScript redireciona para URL”

Perguntas semelhantes a “JavaScript redireciona para URL”

Mais respostas relacionadas para “JavaScript redireciona para URL” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código