<!--//复制网页内容，粘贴就自动加上网址-->
document.body.oncopy = function () { 
	setTimeout( function () { 
		var text = clipboardData.getData("text");
		if (text) { 
			text = text + "\r\n文章来自: 大众计算机学习网(http://www.dzwebs.net) 文章地址："+location.href; clipboardData.setData("text", text);
		} 
				}, 100 ) 
}

//-->

