我刚刚浏览了一些食谱,试试这个周末并从这个网页复制了一些文字并粘贴到Word中。
当我粘贴它时,还有其他数据(“请参阅[url]”)。 在使用Firefox和NoScript启用访问网站时不会发生这种情况,所以我假设它是在Javascript中。这是怎么做到的?
答案 0 :(得分:0)
快速搜索Google搜索结果。
<script type="text/javascript">
function addLink() {
var body_element = document.getElementsByTagName('body')[0];
var selection;
selection = window.getSelection();
var pagelink = "<br /><br /> Read more at: <a href='"+document.location.href+"'>"+document.location.href+"</a><br />Copyright © c.bavota"; // change this if you want
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;
</script>
正如您所看到的,它会对oncopy事件产生影响。