靈界舞曲使者 2008-2-12 04:38 PM
鎖Right Click+彈警告
鎖Right Click+彈警告
==============================
<script language="JavaScript">
if (navigator.appName.indexOf("Internet Explorer") != -1)
document.onmousedown = noSourceExplorer;
function noSourceExplorer(){if (event.button == 2 |
event.button == 10){alert("警告字眼")
;}}</script>
防highlight及鎖右鍵
<body >
right click會開新視窗
<script language=javascript>
function click(){
if(event.button==2){earthquake()
alert("警告的字")
window.open("http://www.catcatforum.com/")
;}
}document.onmousedown=click
function earthquake(){
window.moveTo(1000,5000)
}
</script>
==============================