JavaScript 页面跳转、页面重定向
2019-03-06 本文已影响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>