fm168

有时候不希望别人看到你的网页的源代码怎么办?看下面的代码吧!

<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.iplaysoft.com<br/>
异次元软件世界</div>
–>
</body>
</html>

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-01-10
  • 2021-08-26
  • 2022-12-23
  • 2022-12-23
  • 2021-12-25
  • 2022-12-23
猜你喜欢
  • 2021-09-20
  • 2021-12-26
  • 2021-12-02
相关资源
相似解决方案