/** * Created by star on 2017/7/10. */ $(document).ready(function(){ $('').appendTo('body'); jQuery('#qrcodeCanvas').qrcode({ render : "canvas", text : location.href, background : "#ffffff", //二维码的后景色 foreground : "#000000" //二维码的前景色 }); $(".bds_tsina").click(function(e){ e.preventDefault(); var url = 'http://service.weibo.com/share/share.php?url='+encodeURIComponent(location.href)+'&title='+document.title; window.open(url); }); $(".bds_sqq").click(function(e){ e.preventDefault(); var url = 'http://connect.qq.com/widget/shareqq/index.html?url='+encodeURIComponent(location.href)+'&title='+document.title; window.open(url); }); $(".bds_weixin").click(function(e){ e.preventDefault(); layer.open({ type: 1, title:'分享到微信朋友圈', btn:[], content: $('#qrcodeCanvas') }); }); })