我用jQuery想要找到元素的前置兄弟,所以對於一個例子,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');
});
嘗試'$(本).parent()。prev()。找到( 'A')。CSS(...)' – 2012-04-12 14:46:33
我想'底部bottom'和'自下而上border'應該是'border-bottom' – 2012-04-12 14:49:05