解除智慧树网页各种限制(选中,复制,粘贴等)

一、F12进入开发者模式并点击控制台

二、输入以下代码回车

document.onselectstart = true;
document.oncopy = true;
document.oncut = true;
document.onpaste = true;
document.oncontextmenu = true;

参考文献

如何使用JS拦截并禁止用户复制、剪切、粘贴、鼠标右键(含破解方法)_码上十七的博客-CSDN博客_js 禁止粘贴

猜你喜欢

转载自blog.csdn.net/weixin_58503231/article/details/128098823