标题:网页复制内容大于200个字符 自动添加来源 这个怎么实现
只看楼主
sunfeiyao
Rank: 1
等 级:新手上路
帖 子:68
专家分:0
注 册:2011-9-7
结帖率:12.5%
 问题点数:0 回复次数:0 
网页复制内容大于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个字符 就不自动添加来源
搜索更多相关主题的帖子: 信息 祝福 function null 网页 
2011-11-20 20:48



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-355784-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.290641 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved