gpt4 book ai didi

javascript - jQuery : Select last element which content is

转载 作者:太空宇宙 更新时间:2023-11-03 20:40:15 26 4
gpt4 key购买 nike

在jquery中,如何选择最后一个<li>包含 bar以下 HTML 中的字符串:

<ul>
<li>bar</li>
<li>foo</li>
<li>foo</li>
<li>bar</li> <!-- I want to select this one -->
<li>foo</li>
</ul>

最佳答案

使用 contains() last() jquery 中的选择器

$( "ul li:contains('bar'):last" ).css("color","red");

DEMO

关于javascript - jQuery : Select last element which content is,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27142485/

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