<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);
香草是不是JS庫,它僅僅是JavaScript的:) – hgoz 2013-02-10 19:54:03