3 回答
TA贡献1856条经验 获得超11个赞
这是一个片段,可以助您一臂之力:
theParent = document.getElementById("theParent");
theKid = document.createElement("div");
theKid.innerHTML = 'Are we there yet?';
// append theKid to the end of theParent
theParent.appendChild(theKid);
// prepend theKid to the beginning of theParent
theParent.insertBefore(theKid, theParent.firstChild);
theParent.firstChild将为我们提供第一个元素的引用,theParent并放在其theKid前面。
TA贡献1827条经验 获得超9个赞
您在这里没有给我们太多的工作,但我想您只是在问如何在元素的开头或结尾添加内容?如果是这样,这是您可以轻松完成的操作:
//get the target div you want to append/prepend to
var someDiv = document.getElementById("targetDiv");
//append text
someDiv.innerHTML += "Add this text to the end";
//prepend text
someDiv.innerHTML = "Add this text to the beginning" + someDiv.innerHTML;
挺容易。
添加回答
举报