網頁禁止鼠標左右鍵功能的簡單代碼 這個代碼以前在網上找的,試用效果不錯,放這裡留備份,我想這個也能算是常用的代碼之一了。當然啦,查看源碼時鼠標肯定可以用啦,不過,有時不用想那麼復雜、要求那麼強大,況且源碼中的代碼比文本多。 <script language=JavaScript> document.oncontextmenu=new Function("event.returnValue=false;"); document.onselectstart=new Function("event.returnValue=false;"); </script> 網頁禁止鼠標左右鍵功能的簡單代碼