今年突然发现智慧树上的考试问题无法复制,难道要我一个一个的搜索吗?
当然不!!!
下面就来分享一下如何解决智慧树右击无法复制的问题,直接上图
第一步,按F12打开开发者控制台
image.png
第二步,在控制台Console下输入两行代码
document.oncontextmenu = new Function("event.returnValue=true");
document.onselectstart = new Function("event.returnValue=true");
image.png
这样我们就能愉快地复制啦
image.png