100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > 将网页分享到qq 微信 微博

将网页分享到qq 微信 微博

时间:2021-02-11 19:13:09

相关推荐

将网页分享到qq 微信 微博

原文地址:/article-309.html

效果

分享到微博

使用到的接口(测试时需要登录,网址和图片必须是公网的,不能localhost):

1.分享到QQ空间接口:https://sns./cgi-bin/qzshare/cgi_qzshare_onekey?url=你的网址&sharesource=qzone&title=你的分享标题&pics=你的分享图片&summary=你的分享描述信息2.分享给QQ好友接口:/widget/shareqq/index.html?url=你的分享网址&sharesource=qzone&title=你的分享标题&pics=你的分享图片地址&summary=你的分享描述&desc=你的分享简述3.分享到新浪微博接口:/share/share.php?url=你的分享网址&sharesource=weibo&title=你的分享标题&pic=你的分享图片&appkey=你的key,需要在新浪微博开放平台中申请

html<div class="fl">分享到:</div> <div onclick="shareTo('qzone')"><img src="/static/images/qqzoneshare.png" width="30"> </div> <div onclick="shareTo('qq')"><img src="/static/images/qqshare.png" width="32"> </div> <div onclick="shareTo('sina')"><img src="/static/images/sinaweiboshare.png" width="36"> </div> <div onclick="shareTo('wechat')"><img src="/static/images/wechatshare.png" width="32"> </div>

function shareTo(stype){var ftit = '';var flink = '';var lk = '';//获取文章标题ftit = document.title;//获取网页中内容的第一张图片地址作为分享图flink = document.images[0].src;if(typeof flink == 'undefined'){flink='';}//当内容中没有图片时,设置分享图片为网站logoif(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./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('/share/share.php?url='+document.location.href+'?sharesource=weibo&title='+ftit+'&pic='+lk+'&appkey=2706825840');}//qq好友接口的传参if(stype == 'qq'){window.open('/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开发交流的网站');}//生成二维码给微信扫描分享,php生成,也可以用jquery.qrcode.js插件实现二维码生成if(stype == 'wechat'){window.open('/inc/qrcode_img.php?url=/article-1.html');}}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。