Replacing all children of an HTMLElement?

后端 未结 6 1969
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-05 00:40

In my code, I fairly frequently need to replace all children of a certain HTML container with a new list of children.

What is the fastest way to do this? My current appr

6条回答
  •  庸人自扰
    2021-02-05 01:14

    from the top answer, we could also use outerHTML to do it in one line.

    container.innerHTML = newContainerElements.outerHTML
    

提交回复
热议问题