首页 > 代码库 > 微信网页分享到朋友圈、分享给朋友代码
微信网页分享到朋友圈、分享给朋友代码
<script> m = window.location.href; document.addEventListener(‘WeixinJSBridgeReady‘, function onBridgeReady() { window.shareData = { "timeLineLink": m, "sendFriendLink": m, "weiboLink": m, "Title": "标题", //标题 "Content": "内容", //内容 "img_url": "http://s1.hao123img.com/res/images/search_logo/web.png", //logo地址 "img_width": "401", "img_height": "275", }; // 发送给好友 WeixinJSBridge.on(‘menu:share:appmessage‘, function (argv) { WeixinJSBridge.invoke(‘sendAppMessage‘, { "img_url": window.shareData.img_url, "img_width": window.shareData.img_width, "img_height": window.shareData.img_height, "link": window.shareData.sendFriendLink, "desc": window.shareData.Content, "title": window.shareData.Title }, function (res) { _report(‘send_msg‘, res.err_msg); }) }); // 分享到朋友圈 WeixinJSBridge.on(‘menu:share:timeline‘, function (argv) { WeixinJSBridge.invoke(‘shareTimeline‘, { "img_url": window.shareData.img_url, "img_width": window.shareData.img_width, "img_height": window.shareData.img_height, "link": window.shareData.timeLineLink, "desc": window.shareData.Content, "title": window.shareData.Title }, function (res) { _report(‘timeline‘, res.err_msg); }); }); }, false) </script>
微信网页分享到朋友圈、分享给朋友代码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。