Tip: you can modify some code before running
JavaScript prohibits the copying of webpage code<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.111cn.net/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>JavaScript prohibits the copying of webpage code</title><script type="text/javascript">Document. body. oncopy = nocopy; function nocopy () {clipboardData. setData ("text", ""); setTimeout (nocopydelay, 100);} function nocopydelay () {alert ("cannot copy"); clipboardData. setData ("text", "haha" + "rn article from: 111cn.net for details:" + location. href);} // method 2 function rf () {return false;} document. oncontextmenu = rf function keydown () {if (event. ctrlKey = true | event. keyCode = 93 | event. shiftKey = true) {return false;} document. onkeydown = keydown function drag () {return false;} document. ondragstart = drag function stopmouse (e) {if (navigator. appName = 'Netscape '& (e. which = 3 | e. which = 2) return false; else if (navigator. appName = 'Microsoft Internet Explorer '& (event. button = 2 | event. button = 3) {// alert (""); return false;} return true;} document. onmousedown = stopmouse; if (document. layers) window. captureEvents (Event. MOUSEDOWN); window. onmousedown = stopmouse;</script></head><script language="JavaScript"><!--function key(){ if(event.shiftKey){window.close();}//禁止Shiftif(event.altKey){window.close();}//禁止Altif(event.ctrlKey){window.close();}//禁止Ctrlreturn false;}document.onkeydown=key;if (window.Event)document.captureEvents(Event.MOUSEUP);function nocontextmenu(){event.cancelBubble = trueevent.returnValue = false;return false;}function norightclick(e){if (window.Event){if (e.which == 2 || e.which == 3)return false;}elseif (event.button == 2 || event.button == 3){event.cancelBubble = trueevent.returnValue = false;return false;}}//禁右键document.oncontextmenu = nocontextmenu; // for IE5+document.onmousedown = norightclick; // for all others//--></script><body onselectstart="return false"; onpaste="return false";>JavaScript prohibits the copying of webpage code</body></html>
Tip: you can modify some code before running