Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 314 Bytes

从 DOM 中移除一个元素.md

File metadata and controls

11 lines (8 loc) · 314 Bytes

从 DOM 中移除一个元素

  • 使用 Element.parentNode 获得给定元素的父节点。
  • 使用 Element.removeChild() 从其父节点中删除给定元素。
const removeElement = (el) => el.parentNode.removeChild(el)

// 从 DOM 中移除 .ele
removeElement(document.querySelector('.ele'))