网站开发与移动开发

博客园 首页 新随笔 管理

///复制网站内容自动加上网址
document.body.oncopy = function () {
setTimeout( function () {
var text = clipboardData.getData("text");
if (text) {
text = text + "/r/n  详细出处参考:"+location.href; clipboardData.setData("text", text);
}
}, 100 )
}

posted on 2009-06-24 06:28  txf2004  阅读(165)  评论(0编辑  收藏  举报