js页面保护代码

磊落不羁 by:磊落不羁 分类:常用函数 时间:2年前 阅读:55 评论:0
// 禁止右键菜单
        document.oncontextmenu = function() {
            return false
        }
        // 禁止选择
        document.onselectstart = function() {
            return false
        }
        // 禁止拷贝 IE、Chrome
        document.onbeforecopy = function() {
            return false
        }
        // 禁止选择
        document.onmouseup = function() {
            return false
        }
        // 禁止拷贝
        document.oncopy = function() {
            return false
        }
        // 禁止选择
        document.onselect = function() {
            return false
        }


非特殊说明,本文版权归原作者所有,转载请注明出处

本文地址:http://php.liulei.com.cn/?type=acticle&id=39

评论列表

发表评论

  • 昵称(必填)
  • 邮箱
  • 网址

TOP