zoukankan      html  css  js  c++  java
  • 【几个常见的分享按钮】(非JiaThis)

    function share(name, _href, _title) {
            var url = "";
            if (name == "hexun") {
                url = "http://t.hexun.com/channel/shareweb.aspx?url=" + encodeURIComponent(_href) + "&title=" + encodeURIComponent(_title);
            }
            if (name == "sina") {
                url = "http://v.t.sina.com.cn/share/share.php?url=" + encodeURIComponent(_href) + "&title=" + encodeURIComponent(_title);
            }
            if (name == "qq") {
                url = "http://v.t.qq.com/share/share.php?url=" + encodeURIComponent(_href) + "&title=" + encodeURIComponent(_title);
            }
            if (name == "sohu") {
                url = "http://t.sohu.com/third/post.jsp?&url=" + escape(_href) + "&title=" + escape(_title);
            }
            if (name == "qzone") {
                url = "http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=" + encodeURIComponent(_href) + "&desc=" + encodeURIComponent(_title);
            }
            if (name == "renren") {
                url = "http://share.renren.com/share/buttonshare.do?link=" + encodeURIComponent(_href) + "&title=" + encodeURIComponent(_title);
            }
            if (name == "douban") {
                url = "http://www.douban.com/recommend/?url=" + encodeURIComponent(_href) + "&title=" + encodeURIComponent(_title);
            }
            window.open(url);
        }
  • 相关阅读:
    洛谷 P1325 雷达安装 解题报告
    洛谷 P2184 贪婪大陆 解题报告
    洛谷 P3942 将军令 解题报告
    洛谷 P3698 [CQOI2017]小Q的棋盘 解题报告
    洛谷 P1436 棋盘分割 解题报告
    C++生成dump文件,调试dump文件
    判断机器大小端的两种实现方法
    判断机器大小端的两种实现方法
    Visual Studio 代码生成 运行时库的选择
    Visual Studio 代码生成 运行时库的选择
  • 原文地址:https://www.cnblogs.com/ccto/p/3116980.html
Copyright © 2011-2022 走看看