首先将以下代码复制到记事本中,保存为copymsg.js(一定是js文件)

//复制内容自动添加版权信息
var thehits=document.getElementById("thehit");
if (thehits!=null){
thehits.innerHTML="22936";
}

document.body.oncopy = function ()
{
    setTimeout(
        function ()
        {
            var text = clipboardData.getData("text");
            if (text)
            {
                text = text + "\r\n该文章转载自【我爱江门】:"+location.href;
                clipboardData.setData("text", text);
            }
        },
        100
    )
}
window.onload = function()
{
    this.focus();
}

然后将文件上传到空间

在需要被复制自动添加版权信息的页面插入以下代码

<script type="text/javascript" src="copymsg.js"></script>

代码插入在<body></body>中

记住版权不可侵犯,如不想做本站链接需要转载的请保留版权信息,否则后果自负!