• javascript的页面转向问题



         今天自己做例子的时候总是遇见一些基础的问题,就是我基础没打好,不过我还是坚信,这些东西还是靠实践的,有些jsp还有javasript的东西,不用的话是永远也不知道用的时候的状况是怎么样的。
         先说一下javasript当中页面转向的代码写法:
          这段转载:http://blog.lmtw.com/b/maomaocao/archives/2006/38081.html
    四个页面转向代码
    [ 2006-4-2 15:48:00 | By: 毛毛 ]
     
    1. 在<head></head>区域加入
    代码:
    <meta http-equiv=Pragma content=no-cache>
    <Meta http-equiv="refresh" content="3;url='http://hztv.com.ru' ">


    2. JavaScript
    代码:
    <SCRIPT LANGUAGE="JavaScript">


    <!-- Begin
    redirTime = "3000";
    redirURL = "http://hztv.com.ru/";
    function redirTimer() { self.setTimeout("self.location.href = redirURL;",redirTime); }
    //  End -->
    </script>


    <body onLoad="redirTimer()">


    3. JavaScript
    代码:
    <html><head><title>稍候。。。</title></head>
    <body>
    <script language='javascript'>document.location = '跳转地址'</script>
    </body>
    </html>


    4. 带进度条的页面跳转代码
    代码:
    <html>
    <head>
    <meta http-equiv="Content-Language" content="zh-cn">
    <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
    <title>新视听资源共享论坛</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.myand.com/";}
    }</SCRIPT>
    </P></form>
    </body>
    </html>
    使用javascript来将一个网页转向另一个页面
    script language="javascript">
           location.replace("另一页面地址")
    </script>
  • 相关阅读:
    从零到有模拟实现一个Set类
    node+express+mysql 实现登陆注册
    从路由原理出发,深入阅读理解react-router 4.0的源码
    linux rsyncserver文件同步
    为什么说Python是一门动态语言--Python的魅力
    python基础教程_学习笔记11:魔法方法、属性和迭代器
    list,set,map,数组间的相互转换
    TCP/IP协议族
    宿舍更换的新淋浴喷头"水温vs旋钮角度"关系的研究(曲线)
    单元測试中 Right-BICEP 和 CORRECT
  • 原文地址:https://www.cnblogs.com/mogu/p/store_7.html
Copyright © 2020-2023  润新知