在网上找寻资料时,会遇到个别网页禁止了鼠标右键以及复制功能,使得无法直接的将资料信息复制下来。我便查了一下解决的办法,记录下个人认为比较简单的一个方法,下面便是代码:
document.oncontextmenu = function (){return true;}
document.onselectstart = function (){return true;}
document.onsdragstart = function (){return true;}
document.body.onmouseup = function (){}
document.body.oncopy = function (){}
document.body.onbeforecopy = function (){}
document.onmousedown = function (){}
将以上代码复制,然后在对应页面的控制台(F12)中, 输入并执行即可。之后就会发现,右键、复制都OK了。
如果有更好的方法欢迎分享出来。
网友评论