How to block developers tools (like Firebug) in a page?

夙愿已清 提交于 2019-12-17 20:42:38

问题


I need to block tools like Firebug and Chrome Developer Tools in a specific page. How can I do that?

I found this code and it works for Firebug:

<script>
   if( window.console && window.console.firebug ){
      alert("Sorry! This system does not support Firebug.\nClick OK to log out.");
      window.location='/login_out';
   }
</script>

But not for Chrome Developer Tools and others. Does anyone know a way of blocking it to most of developer tools?

Just FYI, I need this to avoid users to change the html code. I'm using hidden inputs in a form, and sadly, I really need to do this instead using cURL or something similar. Sorry if "developer tools" was not clear enough.


回答1:


Don't bother. You can't disable it, and frankly - there's never a good reason to do it. Don't send your users anything you don't want them to see.



来源:https://stackoverflow.com/questions/8151160/how-to-block-developers-tools-like-firebug-in-a-page

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!