function wxshare(title,excerpt,url,image){
wx.config({
debug: false,
appId: 'wxc98aa3c4992a7047',
timestamp: '1720220148',
nonceStr: 'Jpxhs1jQ08KBXG5u',
signature: '80a064490414d36df7d4d1a0a0160d26caad9e15',
jsApiList: [
'updateAppMessageShareData',
'updateTimelineShareData'
]
});
wx.ready(function () {
//“分享给朋友”及“分享到QQ”按钮的分享内容
wx.updateAppMessageShareData({
title: title,
desc: excerpt,
link: url,
imgUrl: image,
success: function () {}
});
//“分享到朋友圈”及“分享到QQ空间”按钮的分享内容
wx.updateTimelineShareData({
title: title,
link: url,
imgUrl: image,
success: function () {}
});
});
}