有时需要禁止别人查看网页源代码,这里分享一个简单的例子。
代码:
复制代码 代码示例:
<html>
<head>
<script>
function clear(){
Source=document.body.firstChild.data;
document.open();
document.close();
document.title="禁止查看源代码哦";
document.body.innerHTML=Source;
}
</script>
</head>
<body onload=clear()>
<marquee>禁止查看源代码</marquee>
</body>
</html>