“html перенаправить на другую страницу” Ответ

Как перенаправить на другую веб -страницу?

// 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 перенаправление

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

Как перенаправить страницу на другой URL в HTML

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

HTML перенаправление

<!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 перенаправление

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

html перенаправить на другую страницу

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

Ответы похожие на “html перенаправить на другую страницу”

Вопросы похожие на “html перенаправить на другую страницу”

Смотреть популярные ответы по языку

Смотреть другие языки программирования