“Javascript 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

Javascript 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 “Javascript Redirect”

Pertanyaan yang mirip dengan “Javascript Redirect”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya