JavaScript实现复制文章自动添加版权

前端之家收集整理的这篇文章主要介绍了JavaScript实现复制文章自动添加版权前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

第一种

注意:

这段代码必须复制到 body 区域里面才能生效,放到 head 区域内是不起作用的。

第二种

var body_element = document.getElementsByTagName('body')[0];
var selection = window.getSelection();

//if the selection is short let's not annoy our users
if (("" + selection).length < 30) return;

//create a div outside of the visible area
//and fill it with the selected text
var newdiv = document.createElement('div');
newdiv.style.position = 'absolute';
newdiv.style.left = '-99999px';
body_element.appendChild(newdiv);
newdiv.appendChild(selection.getRangeAt(0).cloneContents());

//we need a

 tag workaround
//otherwise the text inside "pre" loses all the line breaks!
if (selection.getRangeAt(0).commonAncestorContainer.nodeName == "PRE") {
newdiv.innerHTML = "
" + newdiv.innerHTML + "
";
}

newdiv.innerHTML += "

Read more at: <a href='"

  • document.location.href + "'>"
  • document.location.href + " © MySite.com";

selection.selectAllChildren(newdiv);
window.setTimeout(function () { body_element.removeChild(newdiv); },200);
});

总结

以上就是小编为大家整理的两种利用JavaScript实现复制文章自动添加版权的方法代码很简单,有需要的朋友们可以参考学习。

原文链接:https://www.f2er.com/js/46902.html

猜你在找的JavaScript相关文章