WordPress禁止F12和鼠标右键代码

关于如何防止别人偷到自己的文章,自己的wordpress主题源码等等方法,数不胜数,然而防不胜防。

其实,别人要想搞你,怎么都能搞到。没什么卵用。

今天给大家一段,防君子不防小人的网页禁止右键和F12的js

代码:

    <script language=javascript>
    function stop(){
    clear();
    return false;
    }
    document.oncontextmenu=stop;
    function clear(){
    window.location.reload();
    }
    document.onkeydown =document.onkeyup = document.onkeypress=function(){
    clear();
    return(false);
    }

    document.onselectstart=new Function('event.returnValue=false;');
    </script>
© 版权声明
THE END
喜欢就支持一下吧
点赞5 分享
发表回复 抢沙发

请登录后发表评论

    暂无评论内容