在<head></head>之间加上这样一段代码就OK了。。。
-
<script language="javascript" type="text/javascript">
-
<!--
-
document.body.oncopy = function () {
-
setTimeout( function () {
-
var text = clipboardData.getData("text");
-
if (text) {
-
texttext = text + "\r\n文章来自:"+location.href;
-
clipboardData.setData("text", text);
-
}
-
}, 100 )
-
}
-
-->
-
</script>