分享插件
在您的网站的 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>
您也可以使用此代码来分享当前页面:
<button onclick="SocialShare(window.location.href)">Share</button>
例子:
+