• 保护网页源码


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
    <script>
    function clear()
    {
        Source=document.body.innerHTML;        //获取文档的原有内容
        document.open();                    //打开文档
        document.write('代码已经被屏蔽');    //输出提示内容
        document.close();                    //文档关闭
        document.title='看不到源文件';        //文档标题
        document.body.innerHTML=Source;        //重新写入旧内容
    }
    </script>
    </head>
    <body onload=clear()>
        大部分网页的源码都可以使用浏览器自带的"查看源代码"命令查看。<br />
        本例学习一种方法,可以屏蔽对网页源代码的查看。
    </body>
    </html>

    经测试,该效果只对IE有效。 

    高否?富否?帅否? 否? 滚去学习!
  • 相关阅读:
    poj1581
    poj3094
    poj2196
    poj1003
    poj2262
    poj1083
    poj3299
    poj2739
    poj1552
    js 获取元素高度和宽度
  • 原文地址:https://www.cnblogs.com/baixc/p/3497173.html
Copyright © 2020-2023  润新知