这是一个非常基本的问题。我有这个脚本:
<script type="text/javascript">
function write(){
document.write('Hello2')
}
write();
</script>
它显示了我的完整页面。并在页面末尾显示Hello2。但是,当我去开发者工具并调用write()时,它会替换我的整个正文 html。只是好奇想知道。
window.onload=write;// has the same effect. Clear's my page.
谢谢。