- <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开发必备工具
下一篇 微软公众云服务运行状态监控