“JS Window Redirect” Kode Jawaban

Redirect 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

JS Redirect

window.location.href = "/"; // appears on history
window.location.replace("/"); // does not appear on history
Code Cat

Javascript Redirect

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

JS Window Redirect

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

Redirect dengan JavaScript

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

Javascript Redirect

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

Jawaban yang mirip dengan “JS Window Redirect”

Pertanyaan yang mirip dengan “JS Window Redirect”

Lebih banyak jawaban terkait untuk “JS Window Redirect” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya