|
发表于 2016-11-3 17:01:16
|
显示全部楼层
share.onMenuShareAppMessage({
title : '互联网之子',
desc : '那就该做出改变。',
link : 'http://movie.douban.com/subject/25785114/', 这里写你的活动页地址。
imgUrl : 'http://demo.open.weixin.qq.com/jssdk/images/p2166127561.jpg',
trigger : function(res) {
// 不要尝试在trigger中使用ajax异步请求修改本次分享的内容,因为客户端分享操作是一个同步操作,这时候使用ajax的回包会还没有返回
alert('用户点击发送给朋友');
},
success : function(res) {
alert('已分享');
},
cancel : function(res) {
alert('已取消');
},
fail : function(res) {
alert(JSON.stringify(res));
}
});
这是设置 分享的地址。再点击微信的分享菜单即可。 |
|