|
楼主 |
发表于 2017-12-5 11:38:11
|
显示全部楼层
- $("#d10").on("click", function(){
- function success(result) {
- alert("success");
- }
- function error(result) {
- alert("error");
- }
- navigator.weixin.share({
- message : {
- title : "WeX5开发指南",
- description : "分享到微信",
- mediaTagName : "Media Tag Name(optional)",
- thumb : "http://YOUR_THUMBNAIL_IMAGE",
- media : {
- type: weixin.Type.WEBPAGE, // webpage
- webpageUrl : window.location.href
- // webpage
- }
- },
- scene : navigator.weixin.Scene.TIMELINE
- }, success, error);
- });
复制代码 |
|