欢迎访问 舍力博客(www.shuyong.net)
$("body").bind('copy', function (e){if(typeof window.getSelection == "undefined") return;var body_element = document.getElementsByTagName('body')[0];var selection = window.getSelection();if (("" + selection).length < 30) return;var newdiv = document.createElement('div');newdiv.style.position = 'absolute';newdiv.style.left = '-99999px';body_element.appendChild(newdiv);newdiv.appendChild(selection.getRangeAt(0).cloneContents());if(selection.getRangeAt(0).commonAncestorContainer.nodeName == "PRE"){newdiv.innerHTML = "<pre>" + newdiv.innerHTML + "</pre>";} newdiv.innerHTML += "<br /><br />原文地址:" + document.location.href + ""; selection.selectAllChildren(newdiv);window.setTimeout(function(){body_element.removeChild(newdiv);},200);});
留言/评论:◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。