• 网页自动跳转代码收集


    ------------------------------------------------------------------------------
    不隐藏转向之后的地址 代码一
    ------------------------------------------------------------------------------
    <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 = "将这里改成要转入的网址";}
    }</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_r(goToURL.arguments+".location='"+goToURL.arguments[i+1]+"'");
    document.returnvalue = false;
    }
    //-->
    </script>
    <body bgcolor="#FFFFFF" onLoad="goToURL('parent','将这里改成要转入的网址');return document.returnvalue">
    </body>
    </html>
    -
    ------------------------------------------------------------------------------

    不隐藏转向之后的地址 代码三
    -------------------------------------------------------------------------------
    <html>
    <head>
    <meta http-equiv="Content-Language" content="zh-CN">
    <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
    <title></title>
    </head>
    <SCRIPT LANGUAGE="javascript">
    <!-- Start Code
    var ver = navigator.appVersion;
    if (ver.indexOf("MSIE") != -1)
    {
    window.location.href="将这里改成要转入的网址"
    }else
    window.location.href="将这里改成要转入的网址"
    // End Code -->
    </SCRIPT>
    </html>
    -------------------------------------------------------------------------------

    不隐藏转向之后的地址 代码四
    -------------------------------------------------------------------------------
    <html>
    <head>
    <meta http-equiv="Content-Language" content="zh-CN">
    <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
    <title></title>
    </head>
    <body>
    <meta http-equiv="refresh" content="0.1;url=将这里改成要转入的网址">
    </body>
    </html>
    -------------------------------------------------------------------------------

    可隐藏转向之后的地址
    -------------------------------------------------------------------------------
    <html>
    <head>
    <meta http-equiv="Content-Language" content="zh-CN">
    <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
    <title></title>
    </head>
    <frameset framespacing="0" border="0" rows="0" frameborder="0">
    <frame name="main" src="将这里改成要转入的网址" scrolling="auto" noresize>
    </frameset>
    </html>
    透明Flash的设置
    ++++++++++++++++++++++++++++++++++++++++++++++++++
    主要是在Flash代码段中插入这一语句:<param name=wmode value=transparent>,请看以下实例:

    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="100%" height="100%">
    <param name="movie" value="../images/hudie.swf">
    <param name="quality" value="high">
    <param name=wmode value=transparent> <!--这个代码表示背景透明--!>
    <embed src="../images/hudie.swf" width="100%" height="100%" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>
    </object>


    html中跳转最全代码
    程序代码
    <html>
    <head>
    <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <title>正在进入</title>
    </head>
    <body>
    <form name=loading>
     <p align=center> <font color="#0066ff" size="2">正在进入,请稍等</font><font color="#0066ff" size="2" face="Arial">...</font>
      <input type=text name=chart size=46 style="font-family:Arial; font-weight:bolder; color:#0066ff; background-color:#fef4d9; padding:0px; border-style:none;">
      
      <input type=text name=percent size=47 style="color:#0066ff; text-align:center; border-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 = "www.cnblogs.com/cdxkyz
    ";} 
    }</script>
     </p>
    </form>
    <p align="center"> 如果您的浏览器不支持跳转,<a style="text-decoration: none" href="http://www.cnblogs.com/cdxkyz"><font color="#FF0000">请点这里</font></a>.</p>
    </body>
    </html>


    html的meta方式
    这种方法的好处是可以控制重定向的时间
    程序代码<meta http-equiv='Refresh' content='0;URL=index.html'>


    在 <body> 里添加代码程序代码
    <body onload="location.href='www.yoururl.com'">

     js快速跳转代码

    <script>window.location.href='http://www.cnblogs.com/cdxkyz';</script>

  • 相关阅读:
    Node.js Event Loop 的理解 Timers,process.nextTick()
    Ajax关于readyState(状态值)和status(状态码)的研究
    原生 JavaScript 实现 AJAX、JSONP
    Python selenium.webdriver.chrome.options.Options() Examples
    【python】统一转换日期格式dateutil.parser.parse
    python读取doc
    大规模爬虫流程总结
    如何巧妙的利用selenium和requests组合来进行操作需要登录的页面
    使用pandas进行数据清洗
    twilio打电话和发短信
  • 原文地址:https://www.cnblogs.com/cdxkyz/p/2766713.html
Copyright © 2020-2023  润新知