<span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);">在HTML中禁止右键功能,防止右键直接查看源代码,禁止左键选中某一区域的文字或者其他内容,可以通过js来控制,但是js控制也是治标不治本,下面先来下治标吧,基本的禁用功能还是有很大的帮助的。</span>
<span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);"></span><pre name="code" class="html"><script language="JavaScript">
<span style="white-space:pre"> </span>//禁止右键功能,单击右键将无任何反应
<span style="white-space:pre"> </span>document.οncοntextmenu=new Function("event.returnValue=false;");
<span style="white-space:pre"> </span>//禁止左键先择,也就是无法复制
<span style="white-space:pre"> </span>document.onselectstart=new Function("event.returnValue=false;");
</script>