<html>
  ...
  <body>
    ...
  // element should be inserted here
  </body>
</html>

我对 Vanilla Java并不是很熟悉,一直都使用jQuery。到目前为止,我已经尝试过了,但是该元素位于<head><body>的中间。
var bodyTag = document.getElementsByTagName('body')[0];
bodyTag.parentNode.insertBefore(myElement, bodyTag);

最佳答案

很简单使用appendChild方法可以将其写为:

document.body.appendChild(myElement);

关于javascript - 使用 Vanilla JavaScript在</body>标记之前插入元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14801921/

10-16 00:12