“JS mengarahkan kembali ke halaman lain” 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 mengarahkan kembali ke halaman lain

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 mengarahkan kembali ke halaman lain”

Pertanyaan yang mirip dengan “JS mengarahkan kembali ke halaman lain”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya