gpt4 book ai didi

jQuery unwrap 移除错误的容器

转载 作者:太空宇宙 更新时间:2023-11-04 13:39:06 24 4
gpt4 key购买 nike

显然是我的语法错误。

我有大量的 div,其中少量的内容包含在 anchor 中。我要做的是移除 anchor 。

感谢您的帮助!

http://jsfiddle.net/danielredwood/rg6n6/

所需的 HTML:

<div class="box"><a href="#"><img src="#"></a></div>
// becomes:
<div class="box"><img src="#"></div>

JavaScript:

$('.box img').unwrap('<a>');

最佳答案

这是您要找的吗?

$('.box a img').unwrap()

.unwrap()没有参数,它只是删除匹配选择器的父标签。因此,通过直接选择 a 下的 img 标签,您可以根据需要将其从 anchor 中解放出来。

关于jQuery unwrap 移除错误的容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9578374/

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