“JS mengarahkan ke URL” 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

Javascript Redirect

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

JS mengarahkan ke URL

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

tautan javascript ke halaman lain

window.open("http://mywebsite.com/home.html")
That one Useless Dev

Jawaban yang mirip dengan “JS mengarahkan ke URL”

Pertanyaan yang mirip dengan “JS mengarahkan ke URL”

Lebih banyak jawaban terkait untuk “JS mengarahkan ke URL” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya