[removed] how to append div in “begining” of another div

后端 未结 6 1077
慢半拍i
慢半拍i 2020-12-20 06:11

I have a div and i want to append another div inside it. but, by using appendChild() it always insert DOM element in end of container element.but i want to inse

6条回答
  •  春和景丽
    2020-12-20 07:06

    You can use prepend() on the parent element to add a child first.

    http://api.jquery.com/prepend/

    I don't have time to test it, but i think that will work.

    var newDiv= document.createElement('div');
        newDiv.innerHTML = "";
    var item = document.getElementById('containerDivId');
        item.prepend(newDiv);
    

提交回复
热议问题