JS小整理

 禁止右键和复制

$(document).ready(
    function() {
     document.body.oncontextmenu = document.body.ondragstart = document.body.onselectstart = document.body.onbeforecopy = function() {
           return false;
       };
       document.body.onselect = document.body.oncopy =document.body.onmouseup = function() {
           document.selection.empty();
       };
});

 

 

 

 

 

 

 

 

 

猜你喜欢

转载自www.cnblogs.com/whatarewords/p/10717850.html