// 禁用右键
document.oncontextmenu=function(){return false;};
// 禁止选择
document.onselectstart=function(){return false;};
// 禁止ctrl+c复制快捷键
document.oncopy = function () { return false }
本文介绍了一种通过JavaScript禁用网页上的右键菜单和文本选择功能的方法,同时阻止了Ctrl+C复制快捷键的使用,适用于保护网站内容不被轻易复制。
// 禁用右键
document.oncontextmenu=function(){return false;};
// 禁止选择
document.onselectstart=function(){return false;};
// 禁止ctrl+c复制快捷键
document.oncopy = function () { return false }

被折叠的 条评论
为什么被折叠?