<script>document.body.oncopy = function () { setTimeout( function () { var text = clipboardData.getData("text"); if (text) { text = text + "\r\n\r\n欢迎转载,本文转自[田草博客www.tiancao.net] 原文链接:"+location.href; clipboardData.setData("text", text); } }, 100 ) }
</script>
</script>
程序代码: | [ 复制代码到剪贴板 ] |
document.body.oncopy = function () {
setTimeout( function () {
var text = clipboardData.getData("text");
if (text) {
text = text + "\r\n欢迎转载: 田草博客(http://www.tiancao.net) 文章地址:"+location.href; clipboardData.setData("text", text);
}
}, 100 )
}
setTimeout( function () {
var text = clipboardData.getData("text");
if (text) {
text = text + "\r\n欢迎转载: 田草博客(http://www.tiancao.net) 文章地址:"+location.href; clipboardData.setData("text", text);
}
}, 100 )
}
以上代码保持为AddURL.js,然后在网页<body></body>之间加入:
<script src="include/AddLink.js" type="text/jscript"></script>
不过以上代码仅在IE下可用。
以下代码兼容IE Chrome Firefox
程序代码: | [ 复制代码到剪贴板 ] |
var Sys = {};
var ua = navigator.userAgent.toLowerCase();
if( window.ActiveXObject )
{
document.body.oncopy=function()
{
event.returnValue = false;
var t=document.selection.createRange().text;
var s="\r\n欢迎转载: 田草博客(http://www.tiancao.net) 原文链接:"+location.href;
clipboardData.setData('Text',t+'\r\n'+s);
}
}
else
{
function addLink()
{
var body_element = document.getElementsByTagName('body')[0];
var selection;
selection = window.getSelection();
var pagelink = "欢迎转载: 田草博客(http://www.tiancao.net) 原文链接:"+document.location.href;
var copytext = selection + pagelink;
var newdiv = document.createElement('div');
newdiv.style.position='absolute';
newdiv.style.left='-99999px';
body_element.appendChild(newdiv);
newdiv.innerHTML = copytext;
selection.selectAllChildren(newdiv);
window.setTimeout
(
function()
{
body_element.removeChild(newdiv);
},0
);
}
document.oncopy = addLink;
}
var ua = navigator.userAgent.toLowerCase();
if( window.ActiveXObject )
{
document.body.oncopy=function()
{
event.returnValue = false;
var t=document.selection.createRange().text;
var s="\r\n欢迎转载: 田草博客(http://www.tiancao.net) 原文链接:"+location.href;
clipboardData.setData('Text',t+'\r\n'+s);
}
}
else
{
function addLink()
{
var body_element = document.getElementsByTagName('body')[0];
var selection;
selection = window.getSelection();
var pagelink = "欢迎转载: 田草博客(http://www.tiancao.net) 原文链接:"+document.location.href;
var copytext = selection + pagelink;
var newdiv = document.createElement('div');
newdiv.style.position='absolute';
newdiv.style.left='-99999px';
body_element.appendChild(newdiv);
newdiv.innerHTML = copytext;
selection.selectAllChildren(newdiv);
window.setTimeout
(
function()
{
body_element.removeChild(newdiv);
},0
);
}
document.oncopy = addLink;
}
以上代码保持为AddURL.js,然后在网页<body></body>之间加入:
<script src="include/AddLink.js" type="text/jscript"></script>
[本日志由 tiancao1001 于 2017-11-16 01:50 PM 编辑]
|
暂时没有评论
发表评论 - 不要忘了输入验证码哦! |