在站点的 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>