中文(繁体)
這招算是目前網路上公佈的防止查看原始程式碼的方法中最好的了,當然了,要看還是辦法的,例如在網址列中輸入"javascript:alert(document.documentElement.outerHTML);"。
但好像測試了幾下,簡單的沒多少程式碼的還行,對於JS較多的,就不行了.哪位朋友知道為什麼會出現這種情況後,還請能告訴我一下.謝謝...
< html> <head> <script language="javascript"> function clear(){ Source=document.body.firstChild.data; document.open(); document.close(); document.title="看不到原始碼"; document.body.innerHTML=Source; } </script> </head> <body onload=clear()> <!-- <a href="www.downcodes.com">建站學院</a>可惜你看不到! --> </body> </html>