是否可以删除除了 body 标签之外没有父元素的 dom 元素?我知道使用 jquery 之类的框架会很容易,但我试图坚持使用直接的 javascript。
这是我发现的其他代码:
function removeElement(parentDiv, childDiv){
if (childDiv == parentDiv) {
alert("The parent div cannot be removed.");
}
else if (document.getElementById(childDiv)) {
var child = document.getElementById(childDiv);
var parent = document.getElementById(parentDiv);
parent.removeChild(child);
}
else {
alert("Child div has already been removed or does not exist.");
return false;
}
}
谢谢!