“Auf einer anderen Seite JavaScript umleiten” Code-Antworten

JavaScript umleiten

// 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 -Umleitung

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

Auf einer anderen Seite JavaScript umleiten

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

Mit JavaScript umleiten

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

JavaScript -Umleitung

<p onclick="myFunction()"></p>
<script>
function myFunction() {
	  window.location.href = "https://whereyouwouldliketogo.com"
}
</script>
Donald Duck

Wie leite ich mit JavaScript zu einer anderen Webseite um

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

Ähnliche Antworten wie “Auf einer anderen Seite JavaScript umleiten”

Fragen ähnlich wie “Auf einer anderen Seite JavaScript umleiten”

Weitere verwandte Antworten zu “Auf einer anderen Seite JavaScript umleiten” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen