📌  相关文章
📜  删除 dom 元素 - Javascript 代码示例

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

代码示例3
// select the target element
const e = document.querySelector("li:last-child");

// remove the list item
e.parentElement.removeChild(e);
Code language: JavaScript (javascript)