我希望将鼠标悬停在子导航中的列表项上,激活页面上该类别中所有项目的类(不仅仅是父元素或兄弟元素)。有任何想法吗?这是我的意思的一个例子:
<style>
img.BLUE {border:1px solid #FFF}
</style>
<ul id="subnav">
<li id="BLUE">Blue</li> <!--When hovering these...-->
<li id="PINK">Pink</li>
<li id="YELLOW">Yellow</li>
</ul>
<!--other stuff here-->
<img class="BLUE" href="image.jpg"> <!--it applies the border to this and any other img.blue on the page-->
<img class="PINK" href="image1.jpg">
<img class="YELLOW" href="image2.jpg">
答案 0 :(得分:2)
这应该做你想要的......
<style type="text/css">
img.active{border:1px solid #FFF;}
</style>
和
$('#subnav li').hover(function(){
$('.' + this.id).addClass('active');
},function(){
$('.' + this.id).removeClass('active');
});
答案 1 :(得分:0)
$('#subnav li').hover(function(){
var id = $(this).attr('id'); // grab ID of clicked el
$('img.'+id).css({border: '1px solid #fff'}); // image class=IDname : add CSS prop.
});