如果p標籤被置於上方和劇本下面放置負載的JavaScript
<p id="dom_intro">Hello</p>
<script>
x=document.getElementById("dom_intro");
document.write("<p>This is the text of dom intro" + x.innerHTML + "Howzzat </p>");
</script>
如果在腳本被置於第一和HTML p標記相同的代碼被放置在下面的腳本工作完全正常下面的腳本這是行不通的,我得到錯誤x是null或undefined
<script>
x=document.getElementById("dom_intro");
document.write("<p>This is the text of dom intro" + x.innerHTML + "Howzzat </p>");
</script>
<p id="dom_intro">Hello</p>
我試圖在外部粘貼腳本的JavaScript文件,並放置在頭部 我收到了同樣的錯誤。是否有任何JavaScript或jQuery腳本的HTML有rendred
如上所述,我使用了window.onload,但腳本中的document.write覆蓋整個html頁面。我應該使用window.onload所有的功能,我delcare在我的JavaScript文件 – user1934140
你不能使用document.write !!!!你不應該..閱讀一些關於JavaScript的書..更多,如果你已經開始..使用document.getElementById和innerHTML – geekman