gpt4 book ai didi

jquery - :last isn't working

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

jQuery(".xg_module_body .postbody a:last").addClass("继续");

该代码有问题吗?由于某种原因该类没有被添加。

我正在尝试添加指向 .postbody 中最后一个 a 的链接。我尝试过 :last-child ,它向两个 a 标记添加了一个类。那么为什么 :last 不起作用呢?

<div class="xg_module_body">
<h3>
<span>
<a href="link">
<img src="image url">
</a>
</span>
<a href="link">Lorem Ipsum</a>
</h3>
<div class="postbody">
<p>
<a href="link"><img src="image url"></a>
</p>
<p>Lorem Ipsum</p>
<a href="link">Continue</a>
</div>
<p class="small">
<a href="link">Lorem Ipsum</a>
</p>
<p>
<a href="link">Lorem Ipsum</a>
</p>
</div>

最佳答案

正如此处所示,它确实有效:http://jsfiddle.net/B9CwH/

我敢打赌你的选择器是错误的。您粘贴的代码段没有 .xg_module_body

<div class="postbody">
<p>
<a href="link"><img src="image"></a>
</p>
<p>title</p>
<a href="link">Continue</a>
</div>

$(".postbody a:last").addClass("continue");

关于jquery - :last isn't working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6068818/

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