jQuery:当鼠标悬停在它上面时,保持切换的子元素

时间:2010-10-29 18:27:18

标签: jquery-ui jquery-animate jquery

我的问题类似,但与jquery-hover-menu-when-hovering-over-child-menu-disappears不同。

我最初在li.item上有悬停事件,这有点古怪,但做了我需要做的事情。我将悬停切换到跨度,以便事件将在文本块上触发,而不是列表块,它会扩展列表的整个宽度。

我试图实现的效果是将鼠标悬停在ul.sub上。我想继续从span.text悬停的队列中继续播放动画,它正在显示它,但也保持打开状态。

发生的事情是鼠标离开了跨度,因此li.item触发了触发器的鼠标输出部分。


jsFiddle Page


HTML


   <ul id="main">
       <li class="head">Title Bar</li>
       <li class="item odd">
           <span class="text">A</span>
           <ul class="sub">
               <li>1</li>
               <li>2</li>
           </ul>
       </li>
       <li class="item even">
           <span class="text">B</span>
           <ul class="sub">
               <li>3</li>
               <li>4</li>
           </ul>
       </li>
       <li class="item odd">
           <span class="text">C</span>
           <ul class="sub">
               <li>5</li>
               <li>6</li>
           </ul>
       </li>
       <li class="item even">
           <span class="text">D</span>
           <ul class="sub">
               <li>7</li>
               <li>8</li>
           </ul>
       </li>
   </ul>


CSS


/* colors used are not for production; they are
   used only to enhance the example's visual distinction */

   #main{width:10em;}
   .head,.item{border:1px solid black;padding:.5em;}
   .head{font-weight:bold; background:#336; color:#fff; cursor:pointer;}
   .item{background:#f90;}
   .sub{display:none;}
   .sub li{padding-left:1em;}
   .text,.sub{cursor:pointer;}


的JavaScript


   $(document).ready(function(){
      // specific here because of other divs/list items

      $('#main li.item span.text').hover(function(){
         $(this).siblings().stop(true,true).toggle('slow');     
      });       

      $('li.head').hover(function(){
         $(this).parent().find('ul.sub').stop(true,true).toggle('slow');
      });
   });

编辑:

我认为我需要的是这些内容,但是从子到跨度时动画会被重新启动。

$(document).ready(function(){
   // specific here because of other divs/list items

   $('#main li.item span.text').hover(
       function(){$(this).siblings().stop(false,true).show('slow');}
      ,function(){$(this).siblings().stop(true,true).hide('slow');}     
   );    

   $('#main li.item ul.sub').hover(
        function(){$(this).stop(false,true).show();}
       ,function(){$(this).stop(false,true).hide('slow');}
   );    

   $('li.head').hover(function(){
      $(this).parent().find('ul.sub').stop(true,true).toggle('slow');
   });
});

1 个答案:

答案 0 :(得分:5)

hover行为分为两个组成部分,mouseentermouseleave。同时将toggle()分为show()hide()。将mouseenter绑定到span.text,将mouseleave绑定到li.item

$(document).ready(function() {
    // specific here because of other divs/list items
    $('#main li.item span.text').mouseenter(function() {
        $(this).siblings().stop(true, true).show('slow');
    });

    $('#main li.item').mouseleave(function() {
        $(this).children("ul").stop(true, true).hide('slow');
    });

    $('li.head').hover(function() {
        $(this).parent().find('ul.sub').stop(true, true).toggle('slow');
    });
});

这样,悬停不会被空格触发,这就是你想要的。