在您網站的 head 標籤內新增以下程式碼:
<script>
function SocialShare(url) {
window.open('https://dashidai.live/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>