gpt4 book ai didi

jQuery 将元素移动到同级不起作用

转载 作者:行者123 更新时间:2023-11-28 01:01:41 25 4
gpt4 key购买 nike

我正在尝试分离一个元素并将其添加到同级元素之前,但没有任何反应,我也没有在控制台中收到任何错误。

这是我的 HTML:

<div class="wp-posts-carousel-container">
<div class="wp-posts-carousel-image"><a href=" /?event=7-nights-450-2"
title="Read more 7 Nights - £450"><img alt="7 Nights - £450"
style="max-width:100%;max-height:100%"
src=" /wp-content/uploads/2016/10/5e87ac4c-5a68-4206-bebc-51163a92a204-150x150.jpg"></a>
</div>
<div class="wp-posts-carousel-details"><h3 class="wp-posts-carousel-title"><a
href=" /?event=7-nights-450-2" title="7 Nights - £450">7 Nights - £450</a></h3>
<div class="wp-posts-carousel-desc"><span class="event-date-visit" style="font-size: 10pt;"><strong>16th Feb&nbsp;to 23rd Feb&nbsp;2017</strong></span>

<ul class="chevrons icon ">
<li><i class="fa fa-check"></i><i class="icon icon-envelope-alt"></i> 4* Hotel</li>
<li><i class="fa fa-check"></i><i class="icon icon-film"></i> Daily breakfast &amp; dinner buffet</li>
<li><i class="fa fa-check"></i><i class="icon icon-envelope-alt"></i> All ground transfers</li>
<li><i class="fa fa-check"></i><i class="icon icon-film"></i> Guided tours to many historical sites</li>
</ul>

Flights not included - approx £200
</div>
<p class="wp-posts-carousel-buttons"><a href="/contact"
class="wp-posts-carousel-more-button button btn btn-primary"
title="Read more 7 Nights - £450">Enquire Now</a></p>
<p></p></div>
</div>

jQuery:

 $(".event-date-visit").each(function() {
$(this).detach().prependTo($(this).closest('.wp-posts-carousel-image'));
});

这根本没有任何作用,有人知道发生了什么吗?

最佳答案

你可以使用这个,例如:

$(".event-date-visit").each(function() {

$(this).prependTo($(this).parent().parent().prev());
});

不要使用 detach(),因为你会丢失 $(this)。

演示:https://jsfiddle.net/ckddg70w/1/

关于jQuery 将元素移动到同级不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41841121/

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