|
|
防止復(fù)制各種經(jīng)典網(wǎng)頁代碼 |
<SCRIPT language=javascript> function click() { if (event.button==2) { alert('你想干什么,想復(fù)制我的東東啊!忘了告訴你,請聯(lián)系我,呵呵。.') } } document.onmousedown=click </SCRIPT>
網(wǎng)頁禁止右鍵代碼 <!--禁止鼠標(biāo)右鍵代碼--> <noscript><iframe src=*.html></iframe></noscript> <script language=javascript> <!-- if (window.Event) document.captureEvents(Event.MOUSEUP); function nocontextmenu(){ event.cancelBubble = true event.returnValue = false; return false; } function norightclick(e){ if (window.Event){ if (e.which == 2 || e.which == 3) return false; } else if (event.button == 2 || event.button == 3){ event.cancelBubble = true event.returnValue = false; return false; } } document.oncontextmenu = nocontextmenu; // for IE5+ document.onmousedown = norightclick; // for all others //--> </script>
上一頁 [1] [2] [3] |
|
|