一键分享到QQ空间、QQ好友、新浪微博、微信代码

 通过qq空间qq聊天新浪微博和微信二维码分享平台提供的接口实现把网页中对应的图片、标题、描述的信息参数用javascript获取后传进接口中,实现一键分享

        使用到的接口:

            1.分享到QQ空间接口https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=你的网址&sharesource=qzone&title=你的分享标题&pics=你的分享图片&summary=你的分享描述信息

            2.分享给QQ好友接口http://connect.qq.com/widget/shareqq/index.html?url=你的分享网址&sharesource=qzone&title=你的分享标题&pics=你的分享图片地址&summary=你的分享描述&desc=你的分享简述

            3.分享到新浪微博接口http://service.weibo.com/share/share.php?url=你的分享网址&sharesource=weibo&title=你的分享标题&pic=你的分享图片&appkey=你的key,需要在新浪微博开放平台中申请


一键分享代码参考如下:

html
  1.  class="fl">分享到:
 
  •  onclick="shareTo('qzone')">     
  •      src="http://zixuephp.net/static/images/qqzoneshare.png" width="30"> 
  •  
  •  onclick="shareTo('qq')">     
  •      src="http://zixuephp.net/static/images/qqshare.png" width="32"> 
  •  
  •  onclick="shareTo('sina')">     
  •      src="http://zixuephp.net/static/images/sinaweiboshare.png" width="36"> 
  •  
  •  onclick="shareTo('wechat')">     
  •      src="http://zixuephp.net/static/images/wechatshare.png" width="32"> 
  •  
      
    js
    1. function shareTo(stype){
    2.     var ftit = '';
    3.     var flink = '';
    4.     var lk = '';
    5.     //获取文章标题
    6.     ftit = $('.pctitle').text();
    7.     //获取网页中内容的第一张图片
    8.     flink = $('.pcdetails img').eq(0).attr('src');
    9.     if(typeof flink == 'undefined'){
    10.         flink='';
    11.     }
    12.     //当内容中没有图片时,设置分享图片为网站logo
    13.     if(flink == ''){
    14.         lk = 'http://'+window.location.host+'/static/images/logo.png';
    15.     }
    16.     //如果是上传的图片则进行绝对路径拼接
    17.     if(flink.indexOf('/uploads/') != -1) {
    18.         lk = 'http://'+window.location.host+flink;
    19.     }
    20.     //百度编辑器自带图片获取
    21.     if(flink.indexOf('ueditor') != -1){
    22.         lk = flink;
    23.     }
    24.     //qq空间接口的传参
    25.     if(stype=='qzone'){
    26.         window.open('https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url='+document.location.href+'?sharesource=qzone&title='+ftit+'&pics='+lk+'&summary='+document.querySelector('meta[name="description"]').getAttribute('content'));
    27.     }
    28.     //新浪微博接口的传参
    29.     if(stype=='sina'){
    30.         window.open('http://service.weibo.com/share/share.php?url='+document.location.href+'?sharesource=weibo&title='+ftit+'&pic='+lk+'&appkey=2706825840');
    31.     }
    32.     //qq好友接口的传参
    33.     if(stype == 'qq'){
    34.         window.open('http://connect.qq.com/widget/shareqq/index.html?url='+document.location.href+'?sharesource=qzone&title='+ftit+'&pics='+lk+'&summary='+document.querySelector('meta[name="description"]').getAttribute('content')+'&desc=php自学网,一个web开发交流的网站');
    35.     }
    36.     //生成二维码给微信扫描分享
    37.     if(stype == 'wechat'){
    38.         window.open('inc/qrcode_img.php?url=http://zixuephp.net/article-1.html');
    39.     }
    40. }

    原作地址:http://www.zixuephp.net/article-309.html

    你可能感兴趣的:(web,移动端开发,移动端开发)