网页复制内容大于200个字符 自动添加来源 这个怎么实现
//复制内容自动添加版权信息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\n本文来自:转发啦祝福网,原文地址:" + location.href;
clipboardData.setData("text", text);
}
},
100
)
}
window.onload = function()
{
this.focus();
}
这段代码怎么修改 大于200个字符 自动添加来源 小于200个字符 就不自动添加来源