请问让一个过渡网页经过一段时间后进入另一张网页,怎么实现?

天启123 2003-11-03 06:54:34
请问让一个过渡网页经过一段时间后进入另一张网页,怎么实现?
...全文
50 10 打赏 收藏 转发到动态 举报
写回复
用AI写文章
10 条回复
切换为时间正序
请发表友善的回复…
发表回复
guowt2mahy 2004-03-03
  • 打赏
  • 举报
回复
<META http-equiv="refresh" content="10; url=要跳转页面的网址">
dafei0320 2003-11-04
  • 打赏
  • 举报
回复
同意qunluo(最爱白菜)
<META http-equiv="refresh" content="10; url=要跳转页面的网址">
blueice2002 2003-11-03
  • 打赏
  • 举报
回复
<META http-equiv="refresh" content="10; url=index.htm">
DeltaCat 2003-11-03
  • 打赏
  • 举报
回复
同意 白菜的方法,这才是最简单完美的!
编程序,简单就是美!
qunluo 2003-11-03
  • 打赏
  • 举报
回复
content=10是10秒后转到要去的时间设置!
qunluo 2003-11-03
  • 打赏
  • 举报
回复
<META http-equiv="refresh" content="10; url=要跳转页面的网址">
qunluo 2003-11-03
  • 打赏
  • 举报
回复
将下面的代码复制到<body> </body>里

<form name=loading>
<p><font color="7285CF">正在载入徐春和电脑学苑首页,请稍候.......</font></p>
<p>
<input type=text name=chart size=46 style="font-family:Arial; font-weight:bolder; color:7285CF; background-color:white; padding:0px; border-style:none;">
<br>
<input type=text name=percent size=46 style="font-family:Arial; color:FF0000; 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()",100);}
else
{window.location = "index.htm";}
}
</script>
</p>
</form>
x0ne 2003-11-03
  • 打赏
  • 举报
回复
<SCRIPT LANGUAGE="JavaScript">
<!--
function gotoother() {
this.location="http://x0ne.yeah.net"
}

setTimeout("gotoother()",5000);//5000代表5000毫秒
// -->
</SCRIPT>

把上面的代碼加到過渡網頁中,

then,after 5 seconeds,you will go to my homepage:)
天启123 2003-11-03
  • 打赏
  • 举报
回复
不用了,谢谢
erlzj 2003-11-03
  • 打赏
  • 举报
回复
不需要ASP,用JS语言就可以实现了,而且也不需要自己编写,在DW可以自己实现的!

28,391

社区成员

发帖
与我相关
我的任务
社区描述
ASP即Active Server Pages,是Microsoft公司开发的服务器端脚本环境。
社区管理员
  • ASP
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧