作者 jinglong
1 个管道 的构建 通过 耗费 0 秒

调试分享

@@ -2,8 +2,12 @@ @@ -2,8 +2,12 @@
2 <script src="http://res.wx.qq.com/open/js/jweixin-1.4.0.js"></script> 2 <script src="http://res.wx.qq.com/open/js/jweixin-1.4.0.js"></script>
3 <script> 3 <script>
4 $(function () { 4 $(function () {
  5 + // 分享链接
5 var url = window.location.href; 6 var url = window.location.href;
  7 + // 分享标题
6 var title_title = $(document).attr('title'); 8 var title_title = $(document).attr('title');
  9 + // 分享简介
  10 + var description = $('p').text().substring(0,30);
7 wx.config({ 11 wx.config({
8 debug: false, 12 debug: false,
9 appId: '{$data.appId}', 13 appId: '{$data.appId}',
@@ -17,8 +21,8 @@ @@ -17,8 +21,8 @@
17 }); 21 });
18 wx.ready(function () { //需在用户可能点击分享按钮前就先调用 22 wx.ready(function () { //需在用户可能点击分享按钮前就先调用
19 wx.onMenuShareAppMessage({ 23 wx.onMenuShareAppMessage({
20 - title: '独角星球', // 分享标题朋友  
21 - desc: title_title, // 分享描述 24 + title: '独角星球-'+title_title, // 分享标题朋友
  25 + desc: description, // 分享描述
22 link: url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 26 link: url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
23 imgUrl: 'http://www.starplanet.cn/themes/simpleboot3_mobile/public/assets/images/cicon_01@2x.png', // 分享图标 27 imgUrl: 'http://www.starplanet.cn/themes/simpleboot3_mobile/public/assets/images/cicon_01@2x.png', // 分享图标
24 type: '', // 分享类型,music、video或link,不填默认为link 28 type: '', // 分享类型,music、video或link,不填默认为link
@@ -28,8 +32,8 @@ @@ -28,8 +32,8 @@
28 }, 32 },
29 }); 33 });
30 wx.onMenuShareTimeline({ 34 wx.onMenuShareTimeline({
31 - title: '独角星球', // 分享标题朋友圈  
32 - desc: title_title, 35 + title: '独角星球-'+title_title, // 分享标题朋友圈
  36 + desc: description,
33 link: url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 37 link: url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
34 imgUrl: 'http://www.starplanet.cn/themes/simpleboot3_mobile/public/assets/images/cicon_01@2x.png', // 分享图标 38 imgUrl: 'http://www.starplanet.cn/themes/simpleboot3_mobile/public/assets/images/cicon_01@2x.png', // 分享图标
35 success: function () { 39 success: function () {