debugging 你好,我是一个业余学生谁不研究javascript.我需要帮助后,点击按钮删除所有元素[关闭]

zpgglvta  于 2022-12-13  发布在  Java
关注(0)|答案(1)|浏览(82)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
昨天关门了。
Improve this question
下面是我的GitHhub链接:https://github.com/chuminh1410/JSI15/tree/main/BTVN/BTVN%20Bu%E1%BB%95i%201
它应该在每次点击按钮后删除div0到div6,这样它就可以重置了。现在每次点击它都只会出现在前一个按钮的顶部。我试过用replaceChild,innerhtml =“"。
你的帮助对我来说意味着一切。
我尝试使用replaceChild,innerhtml =“"。

zdwk9cvp

zdwk9cvp1#

您可以尝试使用class="remove"之类的类标记要删除的每个div
然后移除div,您可以

const elements = document.getElementsByClassName("remove"); //your class name

while (elements.length > 0) elements[0].remove();

相关问题