複製網頁-增加版權文字
2007年7月22日
尚無評論
這兩天在逛網站,看到一個不錯的功能,
當你在該網站上copy內容時,它會將一段版權的文字附加在你copy 的內容後面
蠻有趣的,在這個世代,網路已是必備,常會需要使用複製貼上的功能
這複製網頁增加版權文字功能~如有需要的人可以調整成自己所需來使用
document.body.oncopy=function(){
event.returnValue=false;
var t=document.selection.createRange().text;
var s=”此文章轉載自→Myhome http://herolin.webhop.me”;
clipboardData.setData('Text',t+'\r\n'+s+'\r\n\r\n');
}
event.returnValue=false;
var t=document.selection.createRange().text;
var s=”此文章轉載自→Myhome http://herolin.webhop.me”;
clipboardData.setData('Text',t+'\r\n'+s+'\r\n\r\n');
}


近期留言