gpt4 book ai didi

jquery 查找前一个兄弟

转载 作者:行者123 更新时间:2023-12-01 08:16:48 26 4
gpt4 key购买 nike

我希望使用 jquery 查找元素的前一个同级元素,例如,

<li>
<a href="">
<img src="http://placehold.it/45x45" alt="Profile Image"/>
<hgroup>
<h5>Person Number 1</h5>
<h6>Recruitment Consultant</h6>
</hgroup>
</a>
</li>
<li>
<a href="">
<img src="http://placehold.it/45x45" alt="Profile Image"/>
<hgroup>
<h5>Person Number 2</h5>
<h6>Recruitment Consultant</h6>
</hgroup>
</a>
</li>
<li>
<a href="">
<img src="http://placehold.it/45x45" alt="Profile Image"/>
<hgroup>
<h5>Person Number 3</h5>
<h6>Recruitment Consultant</h6>
</hgroup>
</a>
</li>

如果我将鼠标悬停在第二个列表元素 a 上,我将如何找到前一个 lia

我的尝试如下,

$('resultsset a').hover(function(){
$(this).prev().find('li a').css('bottom-bottom', '1px solid #000');
},
function() {
$(this).prev().find('li a').css('bottom-border', '1px solid #c0c0c0');
});

最佳答案

你已经很接近了。您想要找到该元素的父元素的前一个同级元素,然后找到其中的 a

$(this).parent().prev().find('a')

关于jquery 查找前一个兄弟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10125978/

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