網(wǎng)頁自動跳轉(zhuǎn)代碼方法很多,在這里中國企業(yè)商會專門為大家收集整理了最全的網(wǎng)頁自動跳轉(zhuǎn)代碼方法,希望可以幫助大家實(shí)現(xiàn)網(wǎng)頁自動跳轉(zhuǎn)。
1、html網(wǎng)頁跳轉(zhuǎn)代碼
在網(wǎng)頁頭部<1head>…</head>之間插入以下代碼
<meta http-equiv="refresh" content="7;url=http://www.coolyo.com.cn">,其中:content="7 為打開該頁面后多久時間開始跳轉(zhuǎn),url=后面跟上你要跳轉(zhuǎn)的網(wǎng)址或者網(wǎng)頁地址。
2、js跳轉(zhuǎn)代碼
在網(wǎng)頁<body>…</body>之間插入以下代碼。
<script language='javascript'>document.location = 'http://www.coolyo.com.cn'</script>
3、asp網(wǎng)頁跳轉(zhuǎn)代碼
<%
Response.Redirect("http://www.coolyo.com.cn")
Response.End
%>
4、php網(wǎng)頁跳轉(zhuǎn)代碼
<?php
header("location: http://www.coolyo.com.cn");
>