前端HTML页面JS禁止页面右击、禁止打开F12、禁止复制和剪切、禁止打开开发者工具
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <script src="js/jquery-3.6.0.js" type="text/javascript" charset="utf-8"></script> </head> <body> <div id=""> </div> <script type="text/javascript"> $(document).bind("contextmenu",function(e){ alert("右键被禁止"); return false; }); $(document).keydown(function(e){ // alert(e.key) if(e.ctrlKey==true && (e.key == 'c' || e.key=='x')){ alert('禁止复制和剪切'); e.preventDefault(); } if(e.key=='F12'){ alert('不能打开控制台'); e.preventDefault(); } }) $(function(){ }) </script> </body> </html>