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

后端 未结 6 1083
慢半拍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条回答
  •  猫巷女王i
    2020-12-20 07:14

    Since you've included jquery tag... You can use prepend() method.

    Or you could use pure JS insertBefore:

    item.insertBefore(newDiv, item.firstChild);
    

提交回复
热议问题