美文网首页我的前端,总是出问题=-=
Bootstrap下拉菜单(dropdown)改为hover效果

Bootstrap下拉菜单(dropdown)改为hover效果

作者: 人生怎由我 | 来源:发表于2017-04-10 17:43 被阅读0次

$(".dropdown-toggle").on("mouseenter",function(){

  if($(this).parent().is(".open")){

    return;

  }

  $(this).dropdown('toggle');

})

$(".dropdown").on("mouseleave",function(){

  if($(this).is(".open")){

    $(this).find('.dropdown-toggle').dropdown('toggle');

  }

})

升级版:

$(".dropdown-toggle").on("mouseenter",function(){

if($(this).parent().is(".open")){

return;

}

$(this).dropdown('toggle');

clearTimeout(timer);

})

$(".dropdown").on("mouseleave",function(){

if($(this).is(".open")){

$this = $(this);

timer=setTimeout(function(){

// clearTimeout(timer);

$this.find('.dropdown-toggle').dropdown('toggle');

// alert('1');

},500)

}

})

$(".dropdown-menu").mouseenter(function(){

clearTimeout(timer);

})

相关文章

网友评论

    本文标题:Bootstrap下拉菜单(dropdown)改为hover效果

    本文链接:https://www.haomeiwen.com/subject/pbfeattx.html