
");
wx.ready(function () {
// 在这里调用 API
wx.onMenuShareTimeline({
title: '《囧妈》演员表主演有谁 女主角袁泉与徐峥二度合作', // 分享标题
link: 'http://m.mnw.cn/movie/huayu/2209129.html', // 分享链接
imgUrl: 'http://upload.mnw.cn/topic/mnw.jpg', // 分享图标
success: function () {
// 用户确认分享后执行的回调函数
},
cancel: function () {
// 用户取消分享后执行的回调函数
}
});
wx.onMenuShareAppMessage({
title: '《囧妈》演员表主演有谁 女主角袁泉与徐峥二度合作', // 分享标题
desc: '', // 分享描述
link: 'http://m.mnw.cn/movie/huayu/2209129.html', // 分享链接
imgUrl: 'http://upload.mnw.cn/topic/mnw.jpg', // 分享图标
type: '', // 分享类型,music、video或link,不填默认为link
dataUrl: '', // 如果type是music或video,则要提供数据链接,默认为空
success: function () {
// 用户确认分享后执行的回调函数
},
cancel: function () {
// 用户取消分享后执行的回调函数
//alert(3);
}
});
});
wx.error(function(res){});
|