分享外掛
在head標籤內的網站中添加以下代碼:
            <script>
              function SocialShare(url) {
                  window.open('https://www.loudook.com/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>
例如: