1、禁止右鍵選單
<script type="text/javascript" language="javascript"> function noMenuTwo(){ if(event.button == 2){ alert('禁止右键菜单!'); return false; } } document.onmousedown = noMenuTwo; //或者 <p oncontextmenu="return false"></p> </script>
2、禁止複製(Ctrl+C)
<script type="text/javascript" language="javascript"> function noCopy(){ alert("禁止使用Ctrl+C进行复制操作!"); event.returnValue = false; } </script> //<body oncopy = "noCopy()">
3、禁止另存為
在6c04bd5ca3fcae76e30b72ad730ca86d36cc49f0c466276486e50c850b7e4956之間加入程式碼
2b0b25ff593c5b6c03403dd6234ffb2c< ;iframe src='*.htm'>065276f04003e4622c4fe6b64f465b88f920f363442462683100636cb2662870
4、禁止快取
禁止快取在頁面中使用HTML標記,如下:
<HEAD> <META http-equiv=Pragma content=no-cache> <META http-equiv=Cache-Control content=no-cache> <META http-equiv=Expires content=0> </HEAD>
5、禁止文字選取css程式碼
body{ -o-user-select:none; -ms-user-select:none; -webkit-user-select:none; -moz-user-select:none; user-select:none; }
以上是網頁原始碼保護(禁止右鍵、複製、另存為、檢視原始檔)的詳細內容。更多資訊請關注PHP中文網其他相關文章!