how to add paragraph on top of div content

前端 未结 6 604
清酒与你
清酒与你 2020-12-09 15:28

How can I add multiple paragraph tag, newly tag on top within div container.

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-09 16:26

    Specific to your HTML, it would be:

    $("#pcontainer").prepend('

    here's a new paragraph!

    ');

提交回复
热议问题