wx.config({ //debug: true, appId: 'wx88c0469a1e22ad1e', timestamp: '1665552717', nonceStr: 'kJt976oD6ehHjB9e', signature: 'b1a8d5e99234a861b3b441702e328d3bf1c43ece', jsApiList: ["updateAppMessageShareData","updateTimelineShareData"] }); wx.ready(function () { //需在用户可能点击分享按钮前就先调用 var imgurl = 'https://shouyou.3dmgame.com/uploadimg/ico/2019/0411/1554974245852155.png'; var title = document.title; var desc = document.getElementsByName("description")[0].content; var link = 'https://xt8s.cn/space-uid-26364.html'; wx.updateAppMessageShareData({ title: title, // 分享标题 desc: desc, // 分享描述 link: link, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl: imgurl, // 分享图标 success: function () { // 设置成功 } }) wx.updateTimelineShareData({ title: title, // 分享标题 link: link, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl: imgurl, // 分享图标 success: function () { // 设置成功 } }) });