找到一个直接加代码的,可以作为参考
<!--// 文章防止复制自动加上网址**始 -->
<script type="text/javascript">
document.body.oncopy = function () {
setTimeout( function () {
var text = clipboardData.getData("text");
if (text) {
text = text + "\r\n文章来自: 网站名称(
http://www.chaoyk.com) 详文参考:"+location.href; clipboardData.setData("text", text);
}
}, 100 )
}
</script>
<!--// 结束 --> |