如果你想別人在你網站複製任何內容時, 自動會引用文章連結, 可以增加以下js到你的網站.
現在你也可以試試在我的網站複製任何內容, 然後貼上。
document.addEventListener(‘copy’, function(e) {
var selection = window.getSelection();
var link = document.location.href;
var copiedText = selection + ‘\n\n原文連結: ‘ + link;
e.clipboardData.setData(‘text/plain’, copiedText);
e.preventDefault();
});