• 迅雷下载链接生成


    下面是设置迅雷专用下载链接的JAV代码

    JAV代码:

    <!-- JavaScript专用链代码 -->

    <script src="http://pstatic.xunlei.com/js/webThunderDetect.js"></script>
    <script src="http://pstatic.xunlei.com/js/base64.js"></script>
    <script language="javascript">
    var thunder_url = "http://请改成你需要的链接.rar";
    var thunder_pid = "57029";
    var restitle = "";
    document.write('<a href="#" thunderHref="' + ThunderEncode(thunder_url) + '" thunderPid="' + thunder_pid + '" thunderResTitle="' + restitle + '" onClick="return OnDownloadClick_Simple(this,2,4)" oncontextmenu="ThunderNetwork_SetHref(this)">迅雷专用高速下载</a> ');
    </script>

    JAV代码效果: 迅雷专用高速下载


    JSP代码:

    <!-- JSP专用链代码一 -->
    <SCRIPT src="http://pstatic.xunlei.com/js/webThunderDetect.js"></SCRIPT>
    <%@include file="base64.jsp"%><% 
    String thunderUrl = ThunderEncode("http://,请改成你需要的链接.rar"); 
    %><A oncontextmenu=ThunderNetwork_SetHref(this) onclick="return OnDownloadClick_Simple(this,2,4)" href="#" thunderResTitle="下载资源名" thunderType="" thunderPid="57029" thunderHref="<%=thunderUrl%>">迅雷专用高速下载</A>

    JSP代码效果: 迅雷专用高速下载


    ASP代码:

    <!-- ASP专用链代码一 --> <!--#include file="base64.asp"-->
    <SCRIPT src="http://pstatic.xunlei.com/js/webThunderDetect.js"></SCRIPT>
    <% 
    Dim thunderUrl thunderUrl = ThunderEncode("http://请改成你需要的链接.rar") 
    %><A oncontextmenu=ThunderNetwork_SetHref(this) onclick="return OnDownloadClick_Simple(this,2,4)" href="#" thunderResTitle="下载资源名" thunderType="" thunderPid="57029" thunderHref="<%=thunderUrl%>">迅雷专用高速下载</A>

    ASP代码效果: 迅雷专用高速下载


    PHP代码:

    <!-- PHP专用链代码一 -->
    <SCRIPT src="http://pstatic.xunlei.com/js/webThunderDetect.js"></SCRIPT>
    <?php require("encode.inc"); ?><?php

    $thunderUrl = ThunderEncode("http://请改成你需要的链接.rar"); 
    ?><A oncontextmenu=ThunderNetwork_SetHref(this) onclick="return OnDownloadClick_Simple(this,2,4)" href="#" thunderResTitle="下载资源名" thunderType="" thunderPid="57029" thunderHref="<?php echo $thunderUrl;?>">迅雷专用高速下载</A>

    PHP代码效果: 迅雷专用高速下载


    论坛专用链接代码:

    <!-- 论坛专用链代码 -->
    <SCRIPT src="http://pstatic.xunlei.com/js/webThunderDetect.js"></SCRIPT>

    <SCRIPT src="js/base64.js"></SCRIPT>

    <SCRIPT language=javascript> 
    var thunderPath = "";
    var thunderPid = "57029"; 
    </SCRIPT>

    <SCRIPT src="js/thunderForum.js"></SCRIPT>

    论坛专用链接代码效果:


    ASP.NET代码:

    <!-- Asp.net专用链代码一 -->

    <script runat=server> 
    public string ThunderEncode(string code) 

    code="AA"+code+"ZZ"; 
    string encode = ""; 
    byte[] bytes = Encoding.GetEncoding(54936).GetBytes(code); 
    try 

    encode = Convert.ToBase64String(bytes);

    catch 
    {
    encode = code;

    return "thunder://"+encode; 

    </script> 
    <script src="http://pstatic.xunlei.com/js/webThunderDetect.js"></script> 
    <a href="#" thunderHref="<%=ThunderEncode("http://请改成你需要的链接.rar")%>" thunderPid="57029" thunderType="" thunderResTitle="" onClick="return OnDownloadClick_Simple(this,2,4)" oncontextmenu="ThunderNetwork_SetHref(this)" >迅雷专用高速下载</a>

    ASP.NET代码效果: " thunderPid="57029" thunderType="" thunderResTitle="" onClick="return OnDownloadClick_Simple(this,2,4)" oncontextmenu="ThunderNetwork_SetHref(this)" >迅雷专用高速下载

  • 相关阅读:
    JS for循环删除数组元素
    InteliJ idea import project 找不到文件结构解决办法
    JSONP 实例
    JSONP 回调给全局变量赋值失败解决
    记用ajax网页跳转大坑——后台执行了,但是没有跳转
    web服务器无法显示font-awesome字体图标
    记 fastjson泛型转对象 第一次可以正常转,第二次就变成JSONArray 问题
    java与mysql时间类型对应的问题
    idea 配置springmvc+mybatis(图文教程)
    (转载)Android学习笔记⑨——android.content.ActivityNotFoundException异常处理
  • 原文地址:https://www.cnblogs.com/mcdnf/p/5158323.html
Copyright © 2020-2023  润新知