HTML 网页自动跳转的代码
   1 分钟阅读

网页跳转

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title></title>
    <!--下面的3如果改成0就是立即跳转!-->
    <meta http-equiv="refresh" content="3;url=http://taobao.fm/archives/1246">
    <title>网页自动跳转代码 </title>
</head>
<body>
<p><strong>网页3秒后自动跳转代码</strong></p>
</body>
</html>

立即跳转

把里面的

content="3;url=http://taobao.fm/archives/1246">

3 换成 0,就是立即跳转网页(没有等待时间)

本文目录