在您的网站的 head 标记内添加以下代码:
<script> function SocialShare(url) { window.open('https://community.hot166.com/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>