aboutsummaryrefslogtreecommitdiff
path: root/files/de/orphaned
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-05-22 00:42:07 +0000
committerMDN <actions@users.noreply.github.com>2021-05-22 00:42:07 +0000
commit156b518735b8da6cc954105b0a1250ca31449381 (patch)
tree6a0e35a9622dc00acfc816503410e9a4cd360bc4 /files/de/orphaned
parent73aff5bd1edf14df05228693ed569b652ce89eee (diff)
downloadtranslated-content-156b518735b8da6cc954105b0a1250ca31449381.tar.gz
translated-content-156b518735b8da6cc954105b0a1250ca31449381.tar.bz2
translated-content-156b518735b8da6cc954105b0a1250ca31449381.zip
[CRON] sync translated content
Diffstat (limited to 'files/de/orphaned')
-rw-r--r--files/de/orphaned/web/api/childnode/remove/index.html98
1 files changed, 98 insertions, 0 deletions
diff --git a/files/de/orphaned/web/api/childnode/remove/index.html b/files/de/orphaned/web/api/childnode/remove/index.html
new file mode 100644
index 0000000000..adf2c6b8da
--- /dev/null
+++ b/files/de/orphaned/web/api/childnode/remove/index.html
@@ -0,0 +1,98 @@
+---
+title: ChildNode.remove()
+slug: orphaned/Web/API/ChildNode/remove
+tags:
+ - API
+ - ChildNode
+ - DOM
+ - Experimentell
+ - Méthode
+translation_of: Web/API/ChildNode/remove
+original_slug: Web/API/ChildNode/remove
+---
+<div>{{APIRef("DOM")}}</div>
+
+<p>Die <code><strong>ChildNode.remove()</strong></code> Methode entfernt ein Objekt aus der Baumstruktur ("tree") zu der es gehört.</p>
+
+<h2 id="Syntax">Syntax</h2>
+
+<pre class="syntaxbox"><em>node</em>.remove();
+</pre>
+
+<h2 id="Beispiel">Beispiel</h2>
+
+<h3 id="Benutzung_von_remove()">Benutzung von <code>remove()</code></h3>
+
+<pre class="brush: html">&lt;div id="div-01"&gt;Dies ist div-01&lt;/div&gt;
+&lt;div id="div-02"&gt;Dies ist div-02&lt;/div&gt;
+&lt;div id="div-03"&gt;Dies ist div-03&lt;/div&gt;
+</pre>
+
+<pre class="brush: js">var el = document.getElementById('div-02');
+el.remove(); // Entfernt das div Element mit der id 'div-02'
+</pre>
+
+<h3 id="ChildNode.remove()_kann_nicht_gescopet_werden"><code>ChildNode.remove()</code> kann nicht gescopet werden</h3>
+
+<p>Die <code>remove()</code> Methode kann nicht mit dem <code>with</code> Statement gescopet werden. {{jsxref("Symbol.unscopables")}} enthält mehr Informationen darüber.</p>
+
+<pre class="brush: js">with(node) {
+ remove();
+}
+// Erzeught einen ReferenceError</pre>
+
+<h2 id="Polyfill">Polyfill</h2>
+
+<p>Ein Polyfill der <code>remove()</code> Methode in Internet Explorer 9 und höher sieht folgendermaßen aus:</p>
+
+<pre class="brush: js">// von:https://github.com/jserz/js_piece/blob/master/DOM/ChildNode/remove()/remove().md
+(function (arr) {
+ arr.forEach(function (item) {
+ if (item.hasOwnProperty('remove')) {
+ return;
+ }
+ Object.defineProperty(item, 'remove', {
+ configurable: true,
+ enumerable: true,
+ writable: true,
+ value: function remove() {
+ if (this.parentNode !== null)
+ this.parentNode.removeChild(this);
+ }
+ });
+ });
+})([Element.prototype, CharacterData.prototype, DocumentType.prototype]);</pre>
+
+<h2 id="Specifikationen">Specifikationen</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Specifikation</th>
+ <th scope="col">Status</th>
+ <th scope="col">Kommentar</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('DOM WHATWG', '#dom-childnode-remove', 'ChildNode.remove')}}</td>
+ <td>{{Spec2('DOM WHATWG')}}</td>
+ <td>Erste Definition.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility">Browser compatibility</h2>
+
+<div>
+
+
+<p>{{Compat("api.ChildNode.remove")}}</p>
+</div>
+
+<h2 id="Siehe_auch">Siehe auch</h2>
+
+<ul>
+ <li>Das reine {{domxref("ChildNode")}} Interface.</li>
+ <li>
+ <div class="syntaxbox">Objekttypen die dieses Interface implementieren: {{domxref("CharacterData")}}, {{domxref("Element")}} und {{domxref("DocumentType")}}.</div>
+ </li>
+</ul>