页面使用微信分享功能

微信分享

<script src="http://res.wx.qq.com/open/js/jweixin-1.2.0.js" type="text/javascript" charset="utf-8">script>
<script type="text/javascript" charset="utf-8">

    mui.post('http://tea.krlee.com/Api/public/get-wx-config',{
         url:encodeURIComponent(window.location.href)
    },function(data){

       wx.config(data);

       // 微信JSSDK开发
       wx.ready(function(){
        // 分享给朋友
           wx.onMenuShareAppMessage({
            title: 'xxxxx', // 商品名
            desc: '店庆三周年', // 店铺名
            link: 'xxxx', // 商品购买地址
            imgUrl: 'xxxxxxxx', // 分享的图标
            fail: function (res) {
                alert(JSON.stringify(res));
            }
        });

        // 分享到朋友圈
        wx.onMenuShareTimeline({
            title: 'xxxxx', // 商品名
            desc: '店庆三周年', // 店铺名
            link: 'xxxx', // 商品购买地址
            imgUrl: 'xxxx', // 分享的图标
            fail: function (res) {
                alert(JSON.stringify(res));
            }
        });
    });


    },'json'
    );

script>

PHP解密  urldecode(url)

你可能感兴趣的:(分享,微信分享)