禁止复制页面内容

//禁止复制
function nocopy(){
        document.body.oncontextmenu =  function(){return false};
        document.getElementById('text').children[0].onselectstart =  function(){return false};
        document.getElementById('text').children[0].ondragstart =  function(){return false};
        document.getElementById('text').children[0].onbeforecopy =  function(){return false};
        document.write('<style type="text/css">body,#text p:first-child,h1{moz-user-select:-moz-none; -moz-user-select:none; -o-user-select:none; -khtml-user-select:none; -webkit-user-select:none; -ms-user-select:none; user-select:none}</style>');
}
 
 
posted @ 2017-11-14 09:04  心无引擎,眼无流派  阅读(179)  评论(0编辑  收藏  举报