“JavaScript Howdo, ich habe eine andere Webseite umgeleitet” 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

JavaScript -Umleitung

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

JavaScript -Umleitung

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

JavaScript Howdo, ich habe eine andere Webseite umgeleitet

var url = "https://www.hrefcode.com/question/25/how-do-i-redirect-to-another-webpage-with-use-of-javascript";
$(location).attr('href',url);
Fragile Finch

JavaScript Howdo, ich habe eine andere Webseite umgeleitet

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

Ähnliche Antworten wie “JavaScript Howdo, ich habe eine andere Webseite umgeleitet”

Fragen ähnlich wie “JavaScript Howdo, ich habe eine andere Webseite umgeleitet”

Weitere verwandte Antworten zu “JavaScript Howdo, ich habe eine andere Webseite umgeleitet” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen