如何在使用JQuery悬停另一个元素时隐式悬停两个元素?

时间:2013-12-23 22:11:42

标签: jquery css hover

有什么方法可以在使用JQuery将鼠标悬停在另一个元素上时触发两个元素的悬停?

这是我的HTML:

<!DOCTYPE HTML>
   <html lang="">
    <head>
      <meta http-equiv="Content-Type" content="text/html"/>
      <meta charset="utf-8"/>
          <script language="javascript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
          <script type='text/javascript' src='javascript.js'></script>
          <link rel='stylesheet' href='style.css' type='text/css'>
      <title>Title</title>
   </head>
   <body>
       <div class='hidden'></div>
       <div class='triggerOtherHover' onmouseover='hoverImplicitly();'></div>
       <div class='hidden'></div>
   </body>
  </html> 

这是我的style.css:

.hidden { 
          background-color:red;
          border: 1px solid black;
          opacity:0;
          transition: opacity 0.4s ease-in-out;
          width: 100px;
          height:100px;
 }
.hidden:hover, .visible {
          opacity:1;
}

.triggerOtherHover {
           width:100px;
           height:100px;
           background-color:green;
}

这是我的javascript.js:

function hoverImplicitly {
           $(".hidden").toggleClass('visible');
}

当我将鼠标悬停在 div.triggerOtherHover 上时,带有.hidden类的其他两个div变为不透明的红色原因,但是当我从div.triggeOtherHover中删除鼠标时,div还是红的。我希望它们再次变得透明(不透明度:0)。 有没有办法让它们像CSS一样:悬停伪类?

1 个答案:

答案 0 :(得分:1)

您还需要向div添加一个mouseout处理程序,以便在聚焦时删除该类。

   <div class="triggerOtherHover" onmouseover="hoverImplicitly();" onmouseout="hoverImplicitly();">

或者使用hover pseudoevent将事件绑定到元素,而不是添加内联处理程序。

 $(function(){
    $('.triggerOtherHover').hover(hoverImplicitly); //hover represent mouseenter, mouseleave
});

另请注意,您在函数声明()

中缺少parens function hoverImplicitly()