阿西河 博客 HTML 网页自动跳转的代码 HTML 网页自动跳转的代码 0001年1月1日 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,就是立即跳转网页(没有等待时间) HTML href 的详细用法 HTML5+CSS3 菜单列表
网页跳转 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,就是立即跳转网页(没有等待时间)