分享插件
在您網站的 head 標籤內加入以下程式碼:
            <script>
              function SocialShare(url) {
                  window.open('https://digu.tw/share?url=' + url, '', 'height=600,width=800');
              }
            </script>
            
然後將要共享的 URL 更改為頁面 HTML 後放置共享按鈕:
<button onclick="SocialShare('http://yoursite.com/')">Share</button>
您也可以使用此程式碼來分享目前頁面:
<button onclick="SocialShare(window.location.href)">Share</button>
例子: