<script language=javascript>
        window.onload=function(){
            document.onkeydown=function(){
                var e=window.event||arguments[0];
                if(e.keyCode==123){
                    return false;
                }else if(e.ctrlKey||e.keyCode==73){
                    return false;
                }
            };
            document.oncontextmenu=function(){
                return false;
            }
        }
    </script>

 

相关文章:

  • 2021-12-31
  • 2022-12-23
  • 2022-12-23
  • 2021-10-07
  • 2021-06-05
  • 2022-12-23
  • 2021-07-20
  • 2021-12-05
猜你喜欢
  • 2022-12-23
  • 2021-09-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案