“HTML leiten auf eine andere Seite um” Code-Antworten

Wie leite ich zu einer anderen Webseite um?

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

HTML -Umleitung

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://website.com">    
<title>Redirect</title>
</head>
<body>
</body>
</html>
Outrageous Okapi

So leiten Sie eine Seite in eine andere URL in HTML um

<meta http-equiv="Refresh" content="0; url=https://www.w3docs.com" />
Cowardly Cougar

HTML -Umleitung

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Meta Tag</title>
      <meta http-equiv = "refresh" content = "2; url = https://www.tutorialspoint.com" />
   </head>
   <body>
      <p>Hello HTML5!</p>
   </body>
</html>
Ani

JavaScript -Umleitung

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

HTML leiten auf eine andere Seite um

<script>
  function foo() {
  	window.location.href = url
  }
</script>
Toothless

Ähnliche Antworten wie “HTML leiten auf eine andere Seite um”

Fragen ähnlich wie “HTML leiten auf eine andere Seite um”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen