如何使用 JavaScript 重定向到另一个网页?


要使用 JavaScript 重定向到另一个网页,代码如下所示 −

示例

 动态演示

<!DOCTYPE html>
<html>
<head>
<h1>Redirect to a Webpage Example</h1>
<button class="redirectBtn">Redirect</button>
<h2>Click the above button to Redirect to another Webpage</h2>
<script>
   document .querySelector(".redirectBtn") .addEventListener("click", redirectFunction);
   function redirectFunction() {
      location.href("https://tutorialspoint.com/");
   }
</script>
</body>
</html>

输出

以上代码将生成以下输出 −

单击“重定向”按钮后,我们将被重定向到一个新站点 −

更新于: 12-5-2020

2 千次浏览

开启你的 职业生涯

完成课程获得认证

立即开始
广告