網址代碼加密-九游会j9娱乐平台
⑴ 網址加密,怎麼實現
實現辦法:
(1)利用彈出窗口封鎖滑鼠右鍵將下面這段代碼放在網頁html代碼的標志中,就可以實現封鎖右鍵,給網頁加密。
<script language="javascript">function click() {if (event.button==2) {alert('本站不準使用右鍵,使用左鍵吧!^_^') }}document.onmousedown=click</script>
(2)彈出「添加收藏夾」封鎖滑鼠右鍵將下面這段代碼放在網頁的html代碼的標志中。實現點擊右鍵出現「添加到收藏夾」選項。
<script language="javascript">function click() {if (event.button==2) {window.external.addfavorite('http://www.51cto.com/,' 51cto')}}document.onmousedown=click</script>
(3)徹底封鎖滑鼠右鍵將下面這段代碼放在網頁的html代碼的標志中能夠實現徹底封鎖滑鼠右鍵的效果,由於這個腳本在右鍵按下時調用一個函數,所以可以改為很多種類型。即使按下左鍵,再按下右鍵,放開左鍵,再放開右鍵的方法也還是破解不了。
<script>function dm(e){if(!ns){if(event.button>1)window.external.addfavorite('http://www.popunet.com/,' 大眾網路報')}else{if(e.which>1)return false}}ns=navigator.appname=="netscape";if(ns)document.captureevents(event.mousemove|event.mousedown);document.onmousemove=dm;document.onmousedown=dm;</script>
(4)禁止查看源文件將下面這段代碼放在網頁的html代碼的標志中則可以實現禁止利用ie瀏覽器查看源文件。
<script language="javascript"><!--document.onmousedown=clickfunction click() {if ( event.button==2) {alert('不準查看源文件') }if ( event.button==3) {alert('不準查看源文件') }}//--></script>
(5)用亂碼顯示鏈接、調用地址加密。利用某些函數把url字元轉換成ascii碼,從而達到隱藏鏈接frame頁面和*.js,*.asp等腳本的目的。返回ascii碼escape(character),ascii碼為%xx格式,xx是十六進制,如空格鍵為 。返回字元unescape(string)。