您的位置:首页 > 编程语言

清空代码防止查看源代码

2012-05-02 22:41 531 查看
<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()>
</body>
</html> 这招算是目前网上公布的防止查看源代码的方法中最好的了,当然了,要看还是办法的.比如在地址栏中输入:

<br>
javascript:alert(document.documentElement.outerHTML);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: