当前位置:K88软件开发文章中心编程语言JavaScriptJS01 → 文章内容

如何防止别人看到自己的源代码

减小字体 增大字体 作者:佚名  来源:翔宇亭IT乐园  发布时间:2019-1-3 0:36:09

:2010-05-28 17:44:00

<html>
<head>
   <script language="javascript">
      function clear(){
          Source=document.body.firstChild.data;
          document.open();
          document.close();
          document.title="看不到源代码";
          document.body.innerHTML=Source;
}
</script>
</head>
<body onload=clear()>
<!--
这招算是目前网上公布的防止查看源代码的方法中最好的了,当然了,要看还是办法的,比如在地址栏中输入<br>
javascript:alert(document.documentElement.outerHTML);
-->
</body>
</html>



如何防止别人看到自己的源代码