网站页面跳转代码大全
这年头,真是好记性不如烂笔头。学的快,忘的快。刚才工作中要用到页面跳转,却又记不清楚了。
故特意整理了一下,用做以后参考。
第一篇:JavaScript跳转
方法一:
<scriptlanguage="javascript">
window.location="http://www.baidu.com";
</script>
方法二:
<scriptlanguage="javascript">
document.location="http://www.baidu.com";
</script>
方法三:(带进度条)
<html>
<head>
<metahttp-equiv="Content-Language"content="zh-cn">
<metaHTTP-EQUIV="Content-Type"CONTENT="text/html;charset=gb2312">
<title>跳转到baidu.com</title>
</head>
<body>
<formname=loading>
<Palign=center><FONTface=Arialcolor=#0066ffsize=2>loading...</FONT>
<INPUTstyle="PADDING-RIGHT:0px;PADDING-LEFT:0px;FONT-WEIGHT:bolder;PADDING-BOTTOM:0px;COLOR:#0066ff;BORDER-TOP-style:none;PADDING-TOP:0px;FONT-FAMILY:Arial;BORDER-RIGHT-style:none;BORDER-LEFT-style:none;BACKGROUND-COLOR:white;BORDER-BOTTOM-style:none"
size=46name=chart>
<BR>
<INPUTstyle="BORDER-RIGHT:mediumnone;BORDER-TOP:mediumnone;BORDER-LEFT:mediumnone;COLOR:#0066ff;BORDER-BOTTOM:mediumnone;TEXT-ALIGN:center"size=47name=percent>
<scriptlanguage="javascript">
varbar=0
varline="||"
varamount="||"
count()
functioncount(){
bar=bar+2
amount=amount+line
document.loading.chart.value=amount
document.loading.percent.value=bar+"%"
if(bar<99){
setTimeout("count()",100);
}else{
window.location="http://www.baidu.com/";
}
}
</script>
</P>
</form>
</body>
</html>
第二篇:页面跳转
<head>
<metahttp-equiv="refresh"content="10;url=http://www.baidu.com">
</head>
第三篇:动态页面跳转
方法一:PHP跳转
<?php
header("location:http://www.baidu.com");
?>
方法二:ASP跳转
<%
response.redirect"http://www.baidu.com"
%>
FYI:
<%
DimID1
DimID2
dimstr
ID1=Request("forumID")
ID2=Request("threadID")
str="/blog/threadview.asp?forumID="&ID1&"&threadID="&ID2
response.redirectstr
%>