javascript中的一个新功能,所以我开始研究项目,然后到了当用户单击子元素时父元素删除的地步,这有点卡住了
答案 0 :(得分:1)
要在单击子级时删除父级,请使用parentNode
和removeChild
:
function deleteParent(child) {
let parent = child.parentNode;
parent.parentNode.removeChild(parent);
}
<div id="parent">
<button id="child" onclick="deleteParent(this)">Delete my parent!</button>
Parent text
</div>