是不是覺得你的部落格東西或者文章很寶貝?
但是就是一直有人拷貝?
在這裡教你怎麼disable 右鍵
不過對電腦有知識的人會知道除了右鍵之外要怎麼拷貝。
要完全禁止人家拷貝你的文字你可以看這篇
禁止別人copy文字
1~首先到Design→Add a gadget→HTML/JAVA SCRIPT
copy以下的code進去
<script language="JavaScript">
<!--
//Disable right mouse click Script
var message="Function Disabled!";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
// -->
</script>
Time flies.
4 months ago
0 留言废语xD:
Post a Comment