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>
时间: 2024-10-31 03:27:19