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