将鼠标悬停在一个类上影响页面上所有其他同类

时间:2011-09-05 21:26:22

标签: javascript jquery css hover

我希望将鼠标悬停在子导航中的列表项上,激活页面上该类别中所有项目的类(不仅仅是父元素或兄弟元素)。有任何想法吗?这是我的意思的一个例子:

<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">

2 个答案:

答案 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)

DEMO

$('#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.
});