HTML meta refresh 重新整理與跳轉(重定向)頁面

衣舞晨風發表於2015-07-07
refresh 屬性值 -- 重新整理與跳轉(重定向)頁面
refresh用於重新整理與跳轉(重定向)頁面
refresh出現在http-equiv屬性中,使用content屬性表示重新整理或跳轉的開始時間與跳轉的網址

引用網址: http://blog.csdn.net/jiankunking

demo:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" name="keywords" content="html基礎培訓,培訓,Net"/>
    <!-- 5秒之後重新整理本頁面-->
    <!--<meta http-equiv="refresh" content="5" />-->
    <!-- 5秒之後轉到部落格首頁-->
    <meta  http-equiv="refresh" content="5"; url=http://blog.csdn.net/jiankunking"/>
    <title>20150706學習</title>
</head>
<body>
   <font color="blue" size=6"" > jiankunking </font>
</body>
</html>


相關文章