分享外掛
在您的網站的 head 標記內新增以下程式碼:
            <script>
              function SocialShare(url) {
                  window.open('https://www.rubberx.net/share?url=' + url, '', 'height=600,width=800');
              }
            </script>
            
然後在將要共享的 URL 更改為頁面 HTML 後放置共享按鈕:
<button onclick="SocialShare('http://yoursite.com/')">Share</button>
Also you can use this code to share the current page:
<button onclick="SocialShare(window.location.href)">Share</button>
例子: