logo

哈达波斯网|专注网站

脚本

禁用鼠标右键和F12

脚本  2019/1/2 8:42:26  管理员  

有时候不想自己的网站被人简单的复制粘贴怎么处理呢?一般可以用鼠标右键复制,或者通过F12控制台进行复制,本文介绍的就是屏蔽这个问题

function click(e) {
    if (document.all) {
        if (event.button==2||event.button==3) { 
            alert("wrong");
            oncontextmenu='return false';
        }
    }
    if (document.layers) {
        if (e.which == 3) {
            oncontextmenu='return false';
        }
    }
}
    if (document.layers) {
        document.captureEvents(Event.MOUSEDOWN);
    }
    document.onmousedown=click;
    document.oncontextmenu = new Function("return false;")
    document.onkeydown =document.onkeyup = document.onkeypress=function(){
    if(window.event.keyCode == 123) {
        window.event.returnValue=false;
        return(false); 
    } 
}

这样问题就解决啦


网站首页  | 最新公告  | 漏洞修补  | 网站模板  | 知识文档  | 与我联系
Copyright © 2015 jlasp.com All Rights Reserved.
哈达波斯网|专注网站 版权所有
地址:吉林省吉林市昌邑区 联系QQ:383612004 联系人:董先生
未经本站授权,禁止复制或建立镜像,内容仅用于学习参考!
ICP备案号:吉ICP备15000891号-1 | 

吉公网安备 22020202000301号