首页 > 设计 > 实用代码 > 正文

页面跳转代码整理

2020-02-07 10:59:48
字体:
来源:转载
供稿:网友

通过JS跳转

<script type="text/javascript">

    document.location.href = "http://www.Cuoxin.com";

</script>

HTM页面跳转

<meta http-equiv="refresh" content="10; url=http://www.Cuoxin.com">

 

动态页面跳转

方法一: PHP 跳转

<?php

header("location: http://www.Cuoxin.com");

?>

 

方法二: ASP 跳转

<%

response.redirect "http://www.Cuoxin.com"

%>

带进度条HTM页面跳转

<html>

<head>

<meta http-equiv="Content-Language" content="zh-cn">

<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">

<title>跳转到Cuoxin.com</title>

</head>

<body>

<form name=loading>

<P align=center><FONT face=Arial color=#0066ff size=2>loading...</FONT>

<INPUT style="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=46 name=chart>

<BR>

<INPUT style="BORDER-RIGHT: medium none; BORDER-TOP: medium none; BORDER-LEFT: medium none; COLOR: #0066ff; BORDER-BOTTOM: medium none; TEXT-ALIGN: center" size=47 name=percent>

<script language="javascript">

var bar=0

var line="||"

var amount="||"

count()

function count(){

    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.Cuoxin.com/";

    }

}

</script>

</P>

</form>

</body>

</html>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表