Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. Element
  4. remove()

Element: remove() method

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨July 2015⁩.

TheElement.remove() method removes the element from its parent node.If it has no parent node, callingremove() does nothing.

Syntax

js
remove()

Parameters

None.

Return value

None (undefined).

Examples

Usingremove()

html
<div>Here is div-01</div><div>Here is div-02</div><div>Here is div-03</div>
js
const element = document.getElementById("div-02");element.remove(); // Removes the div with the 'div-02' id

Element.remove() is unscopable

Theremove() method is not scoped into thewith statement.SeeSymbol.unscopables for more information.

js
with (node) {  remove();}// ReferenceError: remove is not defined

Specifications

Specification
DOM
# ref-for-dom-childnode-remove①

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp