gpt4 book ai didi

jquery - 使用 jquery 删除页面加载时的父元素或子元素

转载 作者:行者123 更新时间:2023-12-01 07:57:35 25 4
gpt4 key购买 nike

我想在页面加载时删除围绕代码块的 anchor 元素。

当页面加载时,我想要这个代码:

<h3 class="ms-standardheader ms-WPTitle" style="text-align: justify;">
<a accesskey="W" href="#">
<nobr>
<span>Employee Announcements</span>
<span id="WebPartCaptionWPQ3"></span>
</nobr>
</a>
</h3>

要变成此代码:

<h3 class="ms-standardheader ms-WPTitle" style="text-align: justify;">
<nobr>
<span>Employee Announcements</span>
<span id="WebPartCaptionWPQ3"></span>
</nobr>
</h3>

我尝试使用 unwrap 来实现此功能,但我仍然在挣扎,因为我想保留周围的 nobr 元素。

最佳答案

jQuery 有一个 .unwrap() 函数,可以删除元素的父元素。

http://api.jquery.com/unwrap/

示例:

$(function() {
$('#WebPartCaptionWPQ3').unwrap();
});

关于jquery - 使用 jquery 删除页面加载时的父元素或子元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22971174/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com