码迷,mamicode.com
首页 > 其他好文 > 详细

禁止浏览器右键与复制功能

时间:2016-11-24 19:05:04      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:window   code   context   log   eve   nbsp   rip   cti   使用   


var ProhibitRightCopy = function () { (function () { })(); //禁止右键 function ProhibitRight(range) { if (range == undefined || range.length <= 0) { range = document.body; } else { range = $(range).get(0); } range.oncontextmenu = function () { return false; } } //禁止复制 function ProhibitCopy(range) { if (range == undefined || range.length <= 0) { range = document.body; } else { range = $(range).get(0); } range.onkeydown = function () { if (event.ctrlKey && window.event.keyCode == 67) { return false; } } range.oncopy = function () { return false; } } return { ProhibitRight: ProhibitRight, ProhibitCopy: ProhibitCopy } }()

 //实际使用

    <script>
        $(function () {
            ProhibitRightCopy.ProhibitRight($(".Select"));
            ProhibitRightCopy.ProhibitCopy($(".Select"));
        })
    </script>

 

禁止浏览器右键与复制功能

标签:window   code   context   log   eve   nbsp   rip   cti   使用   

原文地址:http://www.cnblogs.com/sanqianjin/p/6098671.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!