屏蔽页面使用查看源码和复制拷贝页面内容的js代码
程序员文章站
2022-05-14 22:20:53
...
在网上找到的,没试过暂时记录
document.oncontextmenu=function(e){return false;}
document.onmousedown = function() {
return false;
};
document.onselectstart = function() {
return false;
};
上一篇: CSS去掉input框里面的默认背景颜色