Dynamically add Div to html page using javascript or jquery

前端 未结 3 1655
粉色の甜心
粉色の甜心 2021-02-09 06:44

I want to have a main div and have the ability to dynamically add new divs at the same level as the main div. Something like this:

3条回答
  •  有刺的猬
    2021-02-09 06:58

    $("#parent_div").append('
    ');

    or if you want the newly created

    -s to appear before the others

    $("#parent_div").prepend('
    ');

提交回复
热议问题