zoukankan      html  css  js  c++  java
  • 页面禁止右击

    var zhonghao={

    //绑定事件

    myAddEvent: function(obj, sEvent, fn){if(obj.attachEvent){obj.attachEvent('on'+sEvent, fn);}else{obj.addEventListener(sEvent, fn, false);}},

    //禁止选择文本

    disableselect:function(e){

    var omitformtags=["input", "textarea", "select"]

    omitformtags=omitformtags.join("|")

    if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)

    return false

    },

    reEnable:function(){

    return true

    },

    //禁用右键

    stop:function(){

    return false;

    }

    }

    zhonghao.myAddEvent(window,"load",function(){

    //禁止选择文本

    if (typeof document.onselectstart!="undefined")

    document.onselectstart=new Function ("return false");

    else{

    document.onmousedown=zhonghao.disableselect ;

    document.onmouseup=zhonghao.reEnable ;

    }

    //禁止右键

    document.oncontextmenu=zhonghao.stop;

    })

    转载请注明出处: 欢迎留言或qq(1090413588)交流
  • 相关阅读:
    JavaSE-面向对象
    JavaSE-数组
    JavaSE-方法
    JavaSE-流程控制
    JavaSE-基础语法
    Java-初识Java
    PTH的几种食用姿势
    CVE-2020-1472 Zerologon
    OpenGL 术语
    使用IDEA创建SpringMVC项目
  • 原文地址:https://www.cnblogs.com/linyusong/p/5528172.html
Copyright © 2011-2022 走看看