是否可以删除 html 元素并让您的孩子使用 javascript?

我有以下结构..我想删除div.son但保留div.grandson,这可能吗?!或者改变你的<tag>也是一个解决方案..例如:从 a 更改<fieldset>为 a <div>,记住我无权访问 HTML,每个更改都必须使用 ** javascript ** 完成!


<div class="father">

  <fieldset class="son">

    <div class="grandson">Content here</div>

    <div class="grandson">Content here</div>

    <div class="grandson">Content here</div>

    <div class="grandson">Content here</div>

  </fieldset>

</div>

我尝试使用removeChild ()** javascript **的功能,但它删除了整个元素。


慕丝7291255
浏览 126回答 2
2回答

泛舟湖上清波郎朗

使用普通 JavaScript,可以在删除其他任何内容之前深度克隆孙子节点。然后将其附加回父级。当然如果你想把它放在其他地方,你需要附加所需的 DOM 遍历逻辑。(CSS部分仅用于结果的视觉验证)const grandson = document.querySelector('.grandson');const father = grandson.closest('.father');const clonedGrandson = grandson.cloneNode(true);father.querySelector('.son').remove();father.appendChild(clonedGrandson);.father {&nbsp; background-color: red;&nbsp; padding: 20px;&nbsp;}&nbsp;&nbsp;.son {&nbsp; background-color: blue;&nbsp; padding: 20px;&nbsp;}&nbsp;&nbsp;.grandson {&nbsp; background-color: green;&nbsp; padding: 20px;&nbsp;}<div class="father">&nbsp; <fieldset class="son">&nbsp; &nbsp; <div class="grandson">&nbsp; &nbsp; &nbsp; <p>Save me</p>&nbsp; &nbsp; </div>&nbsp; </fieldset></div>

拉莫斯之舞

你可以看看这个答案,下次尝试使用搜索栏。如果你只是想跳过答案。var cnt = $(".remove-just-this").contents(); $(".remove-just-this").replaceWith(cnt);
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5