美文网首页
JavaScript 页面跳转、页面重定向

JavaScript 页面跳转、页面重定向

作者: 严中辉 | 来源:发表于2019-03-06 15:40 被阅读0次
//类似 HTTP 重定向
window.location.replace("https://www.example.com");
//类似点击 a 标签的链接
window.location.href = "https://www.example.com";
//示例
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>Example</title>
    <script>
        window.location.replace("https://www.example.com");
    </script>
</head>
<body>

</body>
</html>

相关文章

网友评论

      本文标题:JavaScript 页面跳转、页面重定向

      本文链接:https://www.haomeiwen.com/subject/zatxpqtx.html