“Redirect ke halaman lain JavaScript” 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

Redirect ke halaman lain JavaScript

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

Bagaimana cara mengarahkan ulang ke halaman web lain menggunakan javascript

window.location.href; // Returns the href (URL) of the current page
window.location.hostname; // Returns the domain name of the web host
window.location.pathname; // Returns the path and filename of the current page
window.location.protocol; // Returns the web protocol used (http: or https:)
window.location.assign; // Loads a new document
window.location.replace; // RReplace the current location with new one.
Himanshu Jangid

Jawaban yang mirip dengan “Redirect ke halaman lain JavaScript”

Pertanyaan yang mirip dengan “Redirect ke halaman lain JavaScript”

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

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya