📜  js 删除 html 元素 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:59.388000             🧑  作者: Mango

代码示例6
// Get the element you want to remove
var element = document.getElementById(elementId);

// Get the parent and remove the element since it is a child of the parent
element.parentNode.removeChild(element);