document.body.oncopy = function () { setTimeout( function () { var text = clipboardData.getData("text"); if (text) { text = text + "\r\n该文章转载自[编程助理站]:"+location.href; clipboardData.setData("text", text); } }, 100 ) }