• 各种微博分享按钮代码(转载)


    腾讯微博:

    1
    <a id="tqq" class="menu" href="javascript:window.open('http://v.t.qq.com/share/share.php?url='+encodeURIComponent('[url]')+'&pic='+encodeURIComponent('')+'&title='+encodeURIComponent([content])),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes'); void 0">腾讯微博</a>

    新浪微薄:

    1
    <a id="sina" class="menu" href="javascript:window.open('http://v.t.sina.com.cn/share/share.php?appkey=1961588658&url='+encodeURIComponent('[url]')+'&pic='+encodeURIComponent('')+'&title='+encodeURIComponent('[content]'),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes'); void 0">新浪微博</a>

    QQ空间:

    1
    <a id="qq" class="menu" href="javascript:window.open('http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url='+encodeURIComponent('[url]')+'&title='+encodeURIComponent('[content]'),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes'); void 0">QQ空间</a>

    页面示例:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    <body>
    <script type="text/javascript">
    function showLayers(){
        if(!document.getElementById("shareLayer")) return false;
        if(!document.getElementById("l_box")) return false;
        var layerId = document.getElementById("shareLayer");
        var lBoxId = document.getElementById("l_box");
        if(layerId.offsetWidth == 30){
            layerId.style.width = "180px"
            lBoxId.style.display = "block";
        }else{
            layerId.style.width = "30px"
            lBoxId.style.display = "none";
        }
    }
    /*title是标题,rLink链接,summary内容,site分享来源,pic分享图片路径*/
    /*新浪微博*/
    function shareTSina(title,rLink,site,pic){
        window.open('http://service.weibo.com/share/share.php?title='+encodeURIComponent(title)+'&url='+encodeURIComponent(rLink)+'&appkey='+encodeURIComponent(site)+'&pic='+encodeURIComponent(pic),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes')       
    }
    /*腾讯微博*/
    function shareToWb(title,rLink,site,pic){
        window.open('http://v.t.qq.com/share/share.php?url='+encodeURIComponent(rLink)+'&title='+encodeURI(title)+'&appkey='+encodeURI(site)+'&pic='+encodeURI(pic),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes')   
    }
    /*人人*/
    function shareRR(title,rLink,summary){
        window.open('http://widget.renren.com/dialog/feed?title='+encodeURIComponent(title)+'&link='+encodeURIComponent(rLink)+'&description='+encodeURIComponent(summary),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes');
    }
    /*开心网*/
    function shareKX(title,rLink,summary){
        window.open('http://www.kaixin001.com/repaste/bshare.php?rtitle='+encodeURIComponent(title)+'&rurl='+encodeURIComponent(rLink)+'&rcontent='+encodeURIComponent(summary),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes' )   
    }
    /*QQ空间*/
    function shareQzone(title,rLink,summary,site,pic){
        window.open('http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?title='+encodeURIComponent(title)+'&url='+encodeURIComponent(rLink)+'&summary='+encodeURIComponent(summary)+ '&site='+encodeURIComponent(site)+'&pics='+encodeURIComponent(pic),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes')
    }
    /*百度*/
    function shareBaiDu(title,rLink){
        window.open('http://apps.hi.baidu.com/share?title='+encodeURIComponent(title)+'&url='+encodeURIComponent(rLink),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes')   
    }
    /*豆瓣*/
    function shareDouBan(title,rLink){
        window.open('http://www.douban.com/recommend?title='+encodeURIComponent(title)+'&url='+encodeURIComponent(rLink),'_blank','scrollbars=no,width=600,height=450,left=75,top=20,status=no,resizable=yes')   
    }
    </script>
    <div id="shareLayer">
      <div id="s_btn" onclick="showLayers()"></div>
      <div id="l_box">
          <a href="javascript:void(0)" onclick="shareTSina('测试标题','http://www.ps-css.com','转贴网站','图片地址')">新浪微博</a>
          <a href="javascript:void(0)" onclick="shareQzone('测试标题','http://www.ps-css.com','测试内容','转贴网站','图片地址')">QQ空间</a>
          <a href="javascript:void(0)" onclick="shareRR('测试标题','http://www.ps-css.com','woshineirong');">人人网</a>
          <a href="javascript:void(0)" onclick="shareKX('测试标题','http://www.ps-css.com','测试内容')">开心网</a>
          <a href="javascript:void(0)" onclick="shareToWb('测试标题','http://www.ps-css.com','转贴网站','图片地址');">腾讯微博</a>
          <a href="javascript:void(0)" onclick="shareBaiDu('测试标题','http://www.ps-css.com');">百度</a>
          <a href="javascript:void(0)" onclick="shareDouBan('测试标题','http://www.ps-css.com');">豆瓣</a>
      </div>
    </div>
    </body>
    </html>

    悲剧的人人网的 内容分享就是搞不出来, 郁闷了大半天! 现在没没出来.

  • 相关阅读:
    HDU 2460 Network 傻逼Tarjan
    HTTP状态码
    Spring Tool Suite(STS)安装
    Manajro17配置
    VsCode搭建Java开发环境
    《从零开始搭建游戏服务器》项目管理工具Maven
    Debian9安装MariaDB
    Intellij从无到有创建项目
    PostgreSQL 二进制安装
    Intellij IDEA创建项目
  • 原文地址:https://www.cnblogs.com/oneLight/p/2280064.html
Copyright © 2020-2023  润新知