禁止浏览器右键与复制功能
Posted 寂寞之砂
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了禁止浏览器右键与复制功能相关的知识,希望对你有一定的参考价值。
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>
以上是关于禁止浏览器右键与复制功能的主要内容,如果未能解决你的问题,请参考以下文章