經過qq空間
、qq聊天
、新浪微博
和微信二維碼分享平臺提供的接口
,實現
把網頁中對應的圖片、標題、描述的信息參數用javascript獲取後傳進接口中,實現一鍵分享
。javascript
使用到的接口:php
1.分享到QQ空間接口:https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=你的網址&sharesource=qzone&title=你的分享標題&pics=你的分享圖片&summary=你的分享描述信息html
2.分享給QQ好友接口:http://connect.qq.com/widget/shareqq/index.html?url=你的分享網址&sharesource=qzone&title=你的分享標題&pics=你的分享圖片地址&summary=你的分享描述&desc=你的分享簡述java
3.分享到新浪微博接口:http://service.weibo.com/share/share.php?url=你的分享網址&sharesource=weibo&title=你的分享標題&pic=你的分享圖片&appkey=你的key,須要在新浪微博開放平臺中申請web
html:微信
<div class="fl">分享到:</div> <div onclick="shareTo('qzone')"> <img src="http://zixuephp.net/static/images/qqzoneshare.png" width="30"> </div> <div onclick="shareTo('qq')"> <img src="http://zixuephp.net/static/images/qqshare.png" width="32"> </div> <div onclick="shareTo('sina')"> <img src="http://zixuephp.net/static/images/sinaweiboshare.png" width="36"> </div> <div onclick="shareTo('wechat')"> <img src="http://zixuephp.net/static/images/wechatshare.png" width="32"> </div>
js:app
function shareTo(stype){ var ftit = ''; var flink = ''; var lk = ''; //獲取文章標題 ftit = $('.pctitle').text(); //獲取網頁中內容的第一張圖片 flink = $('.pcdetails img').eq(0).attr('src'); if(typeof flink == 'undefined'){ flink=''; } //當內容中沒有圖片時,設置分享圖片爲網站logo if(flink == ''){ lk = 'http://'+window.location.host+'/static/images/logo.png'; } //若是是上傳的圖片則進行絕對路徑拼接 if(flink.indexOf('/uploads/') != -1) { lk = 'http://'+window.location.host+flink; } //百度編輯器自帶圖片獲取 if(flink.indexOf('ueditor') != -1){ lk = flink; } //qq空間接口的傳參 if(stype=='qzone'){ 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')); } //新浪微博接口的傳參 if(stype=='sina'){ window.open('http://service.weibo.com/share/share.php?url='+document.location.href+'?sharesource=weibo&title='+ftit+'&pic='+lk+'&appkey=2706825840'); } //qq好友接口的傳參 if(stype == 'qq'){ 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開發交流的網站'); } //生成二維碼給微信掃描分享 if(stype == 'wechat'){ window.open('inc/qrcode_img.php?url=http://zixuephp.net/article-1.html'); } }