别人手动复制网页内容的时候会自动在结尾的地方加上版权:
<script>
document.body.oncopy = function () { setTimeout( function () { var text = clipboardData.getData("text"); if (text) { text = text + "\r\n\r\n该文章转自[{$SiteName}]:"+location.href; clipboardData.setData("text", text); } }, 100 ) }
</script>