2013-02-10 92 views
9
<html> 
    ... 
    <body> 
    ... 
    // element should be inserted here 
    </body> 
</html> 

我不是很熟悉香草Javascript,總是與jQuery合作。我想這到目前爲止,但得到了在<head><body>中間的元素。</body>之前Instert元素標籤與香草JavaScript

var bodyTag = document.getElementsByTagName('body')[0]; 
bodyTag.parentNode.insertBefore(myElement, bodyTag); 
+2

香草是不是JS庫,它僅僅是JavaScript的:) – hgoz 2013-02-10 19:54:03

回答

32

這很簡單。使用appendChild方法可以寫成短:

document.body.appendChild(myElement); 
+6

每個人都有在某一點學習的基礎知識。 – Laizer 2015-05-21 08:37:43

+0

是的,我包括:)非常有幫助< - 謝謝 – 2016-08-22 02:57:36