Replacing all children of an HTMLElement?

后端 未结 6 1953
爱一瞬间的悲伤
爱一瞬间的悲伤 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:19

    If you simply want to replace all children, regarding of the type, why don't you just set its content to '' and then add your code:

    container.innerHTML = '';
    container.appendChild( newContainerElements );
    

    that would basically remove all the children in the fastest possible way :)

提交回复
热议问题