English 中文(简体)
jQuery Hover 菜单-当悬停在子菜单上时,菜单消失
原标题:
  • 时间:2009-01-07 04:44:26
  •  标签:

所以我创建了一个简单的悬停提示,它使用一个链接类来显示下面的div。

展示/隐藏功能很好,但我无法想出如何设置它,以便如果鼠标悬停在div上,它不会隐藏。我尝试使用(this)和.hover,但没有成功。

这是我的代码:

$(document).ready(function()
{

    // hide all dropdown
    $("#dropdown1").hide();

    //hover show dropdown

    $(".menu-level-one").hover(
        function () {
            $("#dropdown1").show();
        },
        function () {
            var postTimer1 = setTimeout(function(){ $("#dropdown1").hide(); }, 1000);        
        }
    );
});
问题回答

您可以使用 clearTimeout(postTimer1) 停止计时器的执行。因此,如果用户悬停在 #dropdown1 上方,则清除计时器。

也许像这样:

$(document).ready(function() {
  var hideTimer = null
  var dropdown = $("#dropdown1", this)
  var menu = $(".menu-level-one", this)

  dropdown.hide();

  $([dropdown[0], menu[0]]).hover(
    function() {
      if (hideDropdownTimer)
        clearTimeout(hideDropdownTimer);

      dropdown.show();
    },
    function() {
      if (hideDropdownTimer)
        clearTimeout(hideDropdownTimer);

      hideDropdownTimer = setTimeout(function() {
        dropdown.hide()
      }, 300)
    }
  )
})




相关问题
热门标签