有时候不想自己的网站被人简单的复制粘贴怎么处理呢?一般可以用鼠标右键复制,或者通过F12控制台进行复制,本文介绍的就是屏蔽这个问题
function click(e) { if (document.all) { if (event.button==2||event.button==3) { alert("wrong"); oncontextmenu='return false'; } } if (document.layers) { if (e.which == 3) { oncontextmenu='return false'; } } } if (document.layers) { document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=click; document.oncontextmenu = new Function("return false;") document.onkeydown =document.onkeyup = document.onkeypress=function(){ if(window.event.keyCode == 123) { window.event.returnValue=false; return(false); } }
这样问题就解决啦
吉公网安备 22020202000301号