HTML 页面重定向(自动跳转)

HTML 实现

1
2
3
4
5
6
<head>
<!-- 以下方式只是刷新不跳转到其他页面 -->
<meta http-equiv="refresh" content="3">
<!-- 以下方式定时转到其他页面 -->
<meta http-equiv="refresh" content="3;url=https://www.baidu.com">
</head>

JavaScript 实现

1
2
3
4
5
<head>
<script language="javascript" type="text/javascript">
window.location.href = "https://www.baidu.com";
</script>
</head>