我想用 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
上,我将如何找到前li
一个a
?
我的尝试如下,
$('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');
});