我有一个空的DIV元素,在其中我通过使用函数createElement(“img”)附加了图像并将它们附加到appendChild中。所以现在我的DIV元素充满了图像。

我想使用一个按钮来清洁该DIV并同时在其中添加新图像。
谢谢你的帮助

最佳答案

您是否在寻找方法replaceChild? Or you could remove all child elements before adding new images:

// assuming yor div is in variable divelement
while (divelement.firstChild)
  divelement.removeChild(divelement.firstChild);

09-17 23:07