Asp Php Js Html网页跳转代码大全

Asp Php Js Html网页跳转代码大全,第1张

概述网(LieHuo.Net)教程 Asp Php Js Html网页跳转代码大全,请加入收藏,以备不时之需。<一>三种网页跳转代码:如果你要在服务器端跳转,可以这样:Response.Redirect(www.wfuyu.com)Response.End如果你要在客户端跳转,可以这样:<script language="javascript" type="te…

内存溢出 jb51.cc Asp PHP Js HTML网页跳转代码大全,请加入收藏,以备不时之需。

<一>三种网页跳转代码:

如果你要在服务器端跳转,可以这样:

Response.Redirect(www.wfuyu.com)
Response.End

如果你要在客户端跳转,可以这样:

<script language="JavaScript" type="text/JavaScript">
window.location="http://www.wfuyu.com";;
</script>

如果你要让页面显示几秒钟之后跳转,可以在HTML代码的<head></head>部分加上这样的代码:

<Meta http-equiv="refresh" content="3; url=http://www.wfuyu.com">

以上三种是也比较常见,比较常用的网页跳转代码运行平台Win9x WinNT Win2000 WinME WinXP。

<二>几段简单的网页跳转代码

不隐藏转向之后的地址

<HTML>
<Title>www.wfuyu.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>
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.wfuyu.com";}
}</SCRIPT>
</P></form>
</body>
</HTML>

不隐藏转向之后的地址

<HTML>
<body>
<script language="JavaScript">
<!--
function goToURL() { //v2.0
for (var i=0; i< (goToURL.arguments.length - 1); i+=2) //with arg pairs
eval(goToURL.arguments+".location=''"+goToURL.arguments[i+1]+"''");
document.returnvalue = false;
}
//-->
</script>
<body bgcolor="#FFFFFF" onLoad="goToURL(''parent'',''http://www.wfuyu.com'');return document.returnvalue">
</body>
</HTML>

不隐藏转向之后的地址

<HTML>
<SCRIPT LANGUAGE="JavaScript">
<!-- Start Code
var ver = navigator.appVersion;
if (ver.indexOf("MSIE") != -1)
{
window.location.href="http://www.wfuyu.com"
}else
window.location.href="http://www.wfuyu.com"
// End Code -->
</SCRIPT>
</HTML>

不隐藏转向之后的地址

<HTML>
<body>
<Meta http-equiv="refresh" content="0.1;url=http://www.wfuyu.com">
</body>
</HTML>

可隐藏转向之后的地址:

<HTML>
<frameset framespacing="0" border="0" rows="0" frameborder="0">
<frame name="main" src="http://www.wfuyu.com" scrolling="auto" noresize>
</frameset>
</HTML>
<三>

1,页面自动刷新:把如下代码加入<head>区域中
<Meta http-equiv="refresh" content="20">
其中20指每隔20秒刷新一次页面.

2,页面自动跳转:把如下代码加入<head>区域中
<Meta http-equiv="refresh" content="20;url=http://www.wfuyu.com">
其中20指隔20秒后跳转到http://www.wfuyu.com页面。


<HTML>
<head>
<Title>正在进入 http://www.wfuyu.com >>> Loading>>> </Title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<p> </p><tr> <td wIDth=724>
<p align=center> </p>
<p align=center><b><Font size="6">网地址:</Font><Font color="red" size="6"> http://www.wfuyu.com
!</Font></b></p>
<p align=center><b><Font size="6">正在进入,请等待,谢谢......</Font></b></p></td></tr><tr>
<td wIDth="724">
<p align=center>
<form name=loading>
<div align=center>
<p>
<input type=text name=chart size=46 style="Font-family:Arial; Font-weight:bolder; color:rgb(124,119,119); background-color:white; padding:0px;border-style:none;">
<br>
<input type=text name=percent size=46 style="color:rgb(138,134,134); text-align:center; border-wIDth:medium; border-style:none;"><script>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()",10);}
else
{window.location = "http://www.wfuyu.com";}
}</script>

</body>
</HTML>

以asp可以用以下方式:

<%
response.redirect "http://www.wfuyu.com"
%>

总结

以上是内存溢出为你收集整理的Asp Php Js Html网页跳转代码大全全部内容,希望文章能够帮你解决Asp Php Js Html网页跳转代码大全所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1023907.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存