wx.config({ //debug: true, appId: 'wx11ee44794a12d966', timestamp: '1749471307', nonceStr: 'Zd4MMIPOD4jGfZt3', signature: 'eb1e239b13c13056b1d2cdb263b4bfe34e9e1836', jsApiList: ["updateAppMessageShareData","updateTimelineShareData"] }); wx.ready(function () { //需在用户可能点击分享按钮前就先调用 var imgurl = 'https://www.tcxxw.com/data/attachment/forum/201910/14/131005me5j6e6hfh36e80g.jpeg'; var title = document.title; var desc = document.getElementsByName("description")[0].content; var link = ''; wx.updateAppMessageShareData({ title: title, // 分享标题 desc: desc, // 分享描述 link: link, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl: imgurl, // 分享图标 success: function () { // 设置成功 } }) wx.updateTimelineShareData({ title: title, // 分享标题 link: link, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl: imgurl, // 分享图标 success: function () { // 设置成功 } }) });