我正在尝试在 js 中使用 insertBefore,如下所示:
var p = document.createElement("p");
p.innerHTML = "test1";
document.body.insertBefore(p, null);
var p = document.createElement("p");
p.innerHTML = "test2";
document.body.insertBefore(p, null);
但这会在 body 标记关闭之前添加最后一个 p 元素,我该如何使用它以便在打开时将其添加到顶部?所以最后添加的元素将是 body 标签内的第一个元素。
我试过:
document.body.insertBefore(p, document.getElementsByTagName('body')[0]);
但萤火虫显示:
未找到节点”代码:“8