- <script type="text/javascript">
- //防止信息拷貝
- //阻止鼠標右鍵功能
- //阻止鼠標左鍵選擇功能
- //阻止鍵盤事件比如; ctrl + c, ctrl + a
- //禁用鍵盤事件
- function OnDeney(e) {
- var theEvent = window.event || e;
- var code = theEvent.keyCode || theEvent.which;
- if (theEvent.ctrlKey || theEvent.keyCode == 78) {
- return false;
- }
- }
- document.onkeydown = OnDeney;
- //禁止選擇功能
- if (typeof document.onselectstart != "undefined")
- document.onselectstart = new Function("return false");
- else {
- document.onmousedown = new Function("return false");
- document.onmouseup = new Function("return true");
- }
- //禁止鼠標右鍵
- document.oncontextmenu = new Function("return false");
- </script>
上一篇 強大的iOS開發必備工具
下一篇 微軟公眾云服務運行狀態監控