2013-06-25 45 views

回答

0

有一個JavaScript來防止這種情況,在81號線到90

<script type="text/javascript"> 
function mousedwn(e) { 
try { if (event.button == 2||event.button == 3) return false; } 
catch (e) { if (e.which == 3) return false; } 

} 
    document.oncontextmenu = function() { return false; } 
    document.ondragstart = function() { return false; } 
    document.onmousedown = mousedwn; 
    </script> 

event.button == 2是您的單擊鼠標右鍵。只要將其刪除...

0

開發人員在網站上安裝了插件「WP Content Copy Protection」,其中包含一些禁用右鍵單擊和各種複製功能的JavaScript。您需要卸載此插件才能重新啓用右鍵單擊。