把下面的这段代码复制保存为HTML文件后打开,看看是否能通过“查看-源代码”看到里面的代码呢?

<html>
<head>
<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.hack0573.com
</div>
-->
</body>
</html>