打开对应模板文件夹,找到viewthread_node.htm
查找:
class="postcontent postbottom"
在其后加上:
<!–// 帖子防复制自动加版权代码开始–>
<script type="text/javascript">
document.body.oncopy = function () {
setTimeout( function () {
var text = clipboardData.getData("text");
if (text) {
text = text + "\r\n本文来自: {$bbname}({$boardurl}) 详细文章参考:"+location.href;
clipboardData.setData("text", text);
}
}, 100 )
}
</script>
<!–// 帖子防复制自动加版权代码结束–>
总算找到了,谢谢