網頁禁用右鍵和開啟了復制限制沒有了右鍵功能的處理辦法如下:
先分享一下代碼:
<script> document.onkeydown = function(e){ var e=e||event; if (e.ctrlKey==1 && e.keyCode==67){ return false; } }//防止ctrl+C document.body.oncopy = function (){return false;} //阻止復制 </script> <script> document.body.onselectstart=document.body.oncontextmenu=function(){return false;};</script>
解除網頁右鍵復制限制也就是找到類似這塊的js代碼去刪除即可。
onselectstart