邊欄加上如下的 語法,就可以顯示這一篇文章網址的QR code 了。
<h2 class='title'>QR Code</h2>
<div class='widget-content'>
<div id="qrcode"></div>
<script>
var img = document.createElement('img');
img.src = 'https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=' + encodeURIComponent(document.location.href);
document.getElementById('qrcode').appendChild(img);
</script>
</div>