常见网站页面内容不可选择复制破解js

1、打开页面控制面板(F12 或者->设置->开发者工具)

// 解除禁止右键菜单
 document.oncontextmenu = function(){ return true; };
//解除 禁止文字选择
document.onselectstart = function(){ return true; };
// 解除禁止复制
document.oncopy = function(){ return true; };

// 解除禁止剪切
document.oncut = function(){ return true; };
// 解除禁止粘贴
document.onpaste = function(){ return true; }

直接拿去粘贴运行即可
若要想禁用这些return false 即可

你可能感兴趣的:(常见网站页面内容不可选择复制破解js)