<html>
...
<body>
...
// element should be inserted here
</body>
</html>
我对 vanilla Javascript 不是很熟悉,一直使用 jQuery。到目前为止,我尝试过这个,但是这让元素位于<head>
and的中间<body>
。
var bodyTag = document.getElementsByTagName('body')[0];
bodyTag.parentNode.insertBefore(myElement, bodyTag);