禁止复制右键F12综合代码

如实观照 技术教程评论1,745字数 86阅读0分17秒阅读模式

禁止复制右键F12综合代码,防采集防copy。

js

<script language="Javascript">
document.oncontextmenu=new Function("event.returnValue=false");
document.onselectstart=new Function("event.returnValue=false");
document.oncontextmenu=function(e){return false;}
        document.onkeydown = function () {
            if (window.event && window.event.keyCode == 123) {
                event.keyCode = 0;
                event.returnValue = false;
                return false;
            }
        };
</script>

css

<style>
body {
-moz-user-select:none;   <!--火狐 禁止文字让选中-->
}
</style>

历史上的今天
2 月
6
 
如实观照
  • 建站教程
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定

拖动滑块以完成验证