首页 > web前端 > js教程 > 正文

如何在 JavaScript 中正确删除 DOM 元素?

Barbara Streisand
发布: 2024-10-31 20:38:29
原创
743 人浏览过

How to Properly Remove DOM Elements in JavaScript?

JavaScript DOM - 删除元素

在 JavaScript 中,使用文档对象模型 (DOM) 时,删除元素是一项常见任务。当需要从 DOM 中删除现有元素时,可以使用removeChild方法。

一种常见的场景是测试元素是否存在,如果存在则删除它,如果不存在则创建它。这种方法确保仅在元素尚不存在时才创建该元素。

考虑以下代码:

<code class="javascript">var duskdawnkey = localStorage["duskdawnkey"];
var iframe = document.createElement("iframe");
var whereto = document.getElementById("debug");
var frameid = document.getElementById("injected_frame");

iframe.setAttribute("id", "injected_frame");
iframe.setAttribute("src", 'http://google.com');
iframe.setAttribute("width", "100%");
iframe.setAttribute("height", "400");

if (frameid) { // check and see if iframe is already on page
  // yes? Remove iframe
  iframe.removeChild(frameid.childNodes[0]);
} else { // no? Inject iframe
  whereto.appendChild(iframe);
  // add the newly created element and it's content into the DOM
  my_div = document.getElementById("debug");
  document.body.insertBefore(iframe, my_div);
}</code>
登录后复制

在此代码中,检查 iframe 是否存在并创建如果不存在,它会按预期工作。然而,尝试使用 iframe.removeChild(frameid.childNodes[0]) 删除 iframe 失败。

错误在于 iframe.removeChild 的使用。应该在要删除的元素的父元素上调用removeChild 方法。在这种情况下,frameid 的父元素是 body 元素。因此,正确的去除方法是:

<code class="javascript">if (frameid) {
  frameid.parentNode.removeChild(frameid);
}</code>
登录后复制

以上是如何在 JavaScript 中正确删除 DOM 元素?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!