清空代码防止查看源代码

<html>

<head>

<script language="javascript">

function clear(){

//Source=document.body.firstChild.data;// 取第一行数据

Source=document.body.innerHTML;

document.open();

document.close();

document.title="看不到源代码";

document.body.innerHTML=Source;

}

</script>

</head>

<body onload=clear()>

复制下来,存在文本文件,在把后缀.txt换成.html.<br>

这招算是目前网上公布的防止查看源代码的方法中最好的了,当然了,要看还是办法的,比如在地址栏中输入<br>

(script removed)alert(document.documentElement.outerHTML); <br>

当你把保存的代码放到.html时,打开之后,在当前页面中点击右键,选择“查看源代码”。<br>

你就会看到源代码是空白的文本文件。<br>

</body>

</html>

你可能感兴趣的:(职场,休闲,开发技巧,清空代码)