|

楼主 |
发表于 2017-12-4 11:57:09
|
显示全部楼层
- $("#d8").on("click", function(event){
- function success(result) {
- alert("success");
- }
- function error(result) {
- alert("error");
- }
- alert(navigator.weixin.share);
- navigator.weixin.share({
- message : {
- title : "分享到微信联系人",
- description : "分享到微信",
- mediaTagName : "Media Tag Name(optional)",
- thumb : "http://wex5.com/cn/wp-content/uploads/2015/03/wen-xin-2.png",
- media : {
- webpageUrl : window.location.href
- }
- },
- scene : navigator.weixin.Scene.SESSION
- }, success, error);
- });
复制代码 |
|