gzwnzss 發表於 2021-2-13 16:46:41

禁止打开F12和禁止开发者模式,简单粗暴!

第一时间保护好代码是非常重要的。经过一晚上的研究,此方法非常适合DZ网站应用。原理或功能:<br />1、禁用右键(防止右键查看源代码)<br />2、禁止任何键盘敲击事件(防止F12和shift+ctrl+i调起开发者工具)<br />3、如果用户在工具栏调起开发者工具,那么判断浏览器的可视高度和可视宽度是否有改变,如有改变则关闭本页面<br /><br />代码如下:<br /><ol><li> &lt;script type=&quot;text/javascript&quot;&gt;<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; //禁用右键(防止右键查看源代码) <br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;window.oncontextmenu=function(){return false;} <br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;//禁止任何键盘敲击事件(防止F12和shift+ctrl+i调起开发者工具) <br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;window.onkeydown = window.onkeyup = window.onkeypress = function () { <br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; window.event.returnValue = false; <br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; return false; <br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;} <br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;//如果用户在工具栏调起开发者工具,那么判断浏览器的可视高度和可视宽度是否有改变,如有改变则关闭本页面 <br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;var h = window.innerHeight,w=window.innerWidth; <br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;window.onresize = function () { <br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; if (h!= window.innerHeight||w!=window.innerWidth){ <br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;window.close(); <br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;window.location = &quot;about:blank&quot;; <br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; } <br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;}<br /><li>&nbsp; &nbsp; &lt;/script&gt;<br /><li></ol><font face="Tahoma, &amp;quot"><font style="font-size:15px">有需要的可以复制使用,当然,对于懂一点的人来说,这一切都是徒劳。</font></font><font color="#ff0000"><font face="Tahoma, &amp;quot"><font style="font-size:15px">永远不可能实现绝对禁止</font></font></font><font face="Tahoma, &amp;quot"><font style="font-size:15px">,此方法只防小白。</font></font><br /><font color="#ff8c00"><font face="Tahoma, &amp;quot"><font style="font-size:15px">原文地址:</font></font><font face="Tahoma, Microsoft Yahei, Simsun"><font style="font-size:15px">https://www.uw7.cn/thread-338-1-1.html</font></font></font><br /><font color="#ff8c00"><font face="Tahoma, Microsoft Yahei, Simsun"><font style="font-size:15px"><br /></font></font></font><br /><font color="#ff8c00"><font face="Tahoma, Microsoft Yahei, Simsun"><font style="font-size:15px"><br /></font></font></font><br /><br />Tahoma<em>, </em>15px<em>, </em>禁止
頁: [1]
查看完整版本: 禁止打开F12和禁止开发者模式,简单粗暴!