“Javascript mengalihkan 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 OnClick Redirect

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

Javascript Redirect

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

Javascript mengalihkan 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 mengalihkan ke halaman lain

// similar behavior as an HTTP redirect
window.location.replace("https://www.hrefcode.com");

// similar behavior as clicking on a link
window.location.href = "https://www.hrefcode.com";
Precious Pigeon

Jawaban yang mirip dengan “Javascript mengalihkan ke halaman lain”

Pertanyaan yang mirip dengan “Javascript mengalihkan ke halaman lain”

Lebih banyak jawaban terkait untuk “Javascript mengalihkan ke halaman lain” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya