zoukankan      html  css  js  c++  java
  • 网页源代码清空

    <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 />
    当然了,要看还是办法的,比如在地址栏中输入:<br />
    javascript:alert(document.documentElement.outerHTML);
    -->
    </body>
    </html>
  • 相关阅读:
    C 应用
    C 基本语法
    iOS
    iOS
    iOS
    iOS
    iOS
    iOS
    iOS
    iOS
  • 原文地址:https://www.cnblogs.com/ganmk/p/1197791.html
Copyright © 2011-2022 走看看