“JS 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 OnClick Redirect

<button onclick="location.href='www.yoursite.com'">Click Me</button>
P. Tune

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 Redirect

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

Redirect dengan JavaScript

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

Jawaban yang mirip dengan “JS Redirect”

Pertanyaan yang mirip dengan “JS Redirect”

Lebih banyak jawaban terkait untuk “JS Redirect” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya