gpt4 book ai didi

jquery - 迭代并向每个段落添加类

转载 作者:行者123 更新时间:2023-12-01 06:13:55 26 4
gpt4 key购买 nike

我正在尝试为每个 block 的第一个 P 添加类“ignore”,并为最后一个 P 添加类“style”。

<div class="tiles_large">
<span class="spacer">&nbsp;</span>
<p>image here</p>
<span class="spacer">&nbsp;</span>
<h4>headline here</h4>
<span class="spacer">&nbsp;</span>
<p>content here</p>
<span class="spacer">&nbsp;</span>
</div>

<div class="tiles_small">
<span class="spacer">&nbsp;</span>
<p>image here</p>
<span class="spacer">&nbsp;</span>
<h4><div><span>headline here</span></div></h4>
<span class="spacer">&nbsp;</span>
<p>content here</p>
<span class="spacer">&nbsp;</span>
</div>

这是我的 jquery,但它没有返回预期的结果。

  $(".tiles_large p,.tiles_small p").each(function() {
$(this).find("p:first").addClass("ignore");
});

$(".tiles_large p,.tiles_small p").each(function() {
$(this).find("p:last").addClass("style");
});

Here is my fiddle

最佳答案

这是你想要的吗? DEMO 。如果是这样,则不需要使用 .each 函数。

$(".tiles_large,.tiles_small").find("p:first").addClass("ignore").end().find("p:last").addClass("style");

关于jquery - 迭代并向每个段落添加类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15443001/

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