zoukankan      html  css  js  c++  java
  • 利用js代码屏蔽f12,右键,粘贴,复制,剪切,选中,操作!!秀!秀!秀!

    koala 专注于个人技术分享

    屏蔽f12审查

    <script>
    document.onkeydown = function () {
    if (window.event && window.event.keyCode == 123) {
    alert("F12被禁用");
    event.keyCode = 0;
    event.returnValue = false;
    }
    if (window.event && window.event.keyCode == 13) {
    window.event.keyCode = 505;
    }
    if (window.event && window.event.keyCode == 8) {
    alert(str + "
    请使用Del键进行字符的删除操作!");
    window.event.returnValue = false;
    }
    }
    </script>
    

      

    屏蔽右键菜单

    <script>
    document.oncontextmenu = function (event) {
    if (window.event) {
    event = window.event;
    }
    try {
    var the = event.srcElement;
    if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")) {
    return false;
    }
    return true;
    } catch (e) {
    return false;
    }
    }
    
    </script>
    

      

    屏蔽粘贴

    <script>
    document.onpaste = function (event) {
    if (window.event) {
    event = window.event;
    }
    try {
    var the = event.srcElement;
    if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")) {
    return false;
    }
    return true;
    } catch (e) {
    return false;
    }
    }
    </script>
    

      

    屏蔽复制

    <script>
    document.oncopy = function (event) {
    if (window.event) {
    event = window.event;
    }
    try {
    var the = event.srcElement;
    if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")) {
    return false;
    }
    return true;
    } catch (e) {
    return false;
    }
    }
    </script>
    

      

    屏蔽剪切

    <script>
    document.oncut = function (event) {
    if (window.event) {
    event = window.event;
    }
    try {
    var the = event.srcElement;
    if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")) {
    return false;
    }
    return true;
    } catch (e) {
    return false;
    }
    }<script>
    

      

    屏蔽选中

    <script>
    document.onselectstart = function (event) {
    if (window.event) {
    event = window.event;
    }
    try {
    var the = event.srcElement;
    if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")) {
    return false;
    }
    return true;
    } catch (e) {
    return false;
    }
    }
    </script>
    

      

    这些代码获取你在某些特殊开发的场合你可以用到,但是你也只能用这个骗一下小白,哈哈! 我收藏的分享出来给大家!

  • 相关阅读:
    设置共享文件夹大小
    About IConfigurationSectionHandler Interface
    zoj 1050
    SQL Server 数据库优化经验总结
    一、页面输出缓存
    [转]深入解读 ADO.NET 2.0 的十大最新特性
    ASP.NET 缓存学习
    [转]写给ASP.NET程序员:网站中的安全问题
    [转] ASP.NET 性能提升秘诀之管道与进程优化
    实战 SQL Server 2005 镜像配置
  • 原文地址:https://www.cnblogs.com/well-666/p/11530886.html
Copyright © 2011-2022 走看看