How do I clear inner HTML

前端 未结 4 1746
盖世英雄少女心
盖世英雄少女心 2021-02-03 23:03

I\'ve been fiddling with this for a while but it won\'t work and I can\'t figure out why. Please help. Here is what I have:



    

        
4条回答
  •  不思量自难忘°
    2021-02-03 23:36

    const destroy = container => {
      document.getElementById(container).innerHTML = '';
    };
    

    Faster previous

    const destroyFast = container => {
      const el = document.getElementById(container);
      while (el.firstChild) el.removeChild(el.firstChild);
    };
    

提交回复
热议问题