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