有时候不希望别人看到你的网页的源代码怎么办?看下面的代码吧!
<html>
<head>
<title>彻底隐藏你HTML网页的源代码 - 中国教程网</title>
<script>
function clear() {
Source=document.body.firstChild.data;
document.open();
document.close();
document.body.innerHTML=Source;
}
</script>
</head>
<body onload=clear()>
<!–
<div align=center>现在已经看不到我的源代码了吧!
<br/>www.jcwcn.com<br/>
中国教程网</div>
–>
</body>
</html>
|