1. 你先去 设计 ( design )
2. 按 添加小工具 ( add a gadget )
3. 寻找 HTML/JavaScript4. copy & paste 以下的code
<script language=javascript>
<!--
//edit by unwanted
var message="不要当小偷";
///////////////////////////////////
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>
你可以把紫色字体改成你喜欢的字眼
按保存 ( save ) 完成 ! :)



No comments:
Post a Comment