这是代码,当将鼠标悬停在li
项目上时,选项卡会动画并增长以270px
同时打开div
包含输入字段的相同宽度的下拉列表,但是当我将鼠标移出dropdown
div 或尝试从选项列表中选择某些内容时,下拉列表关闭,我想要一些延迟或其他解决方案来解决这个问题
$(function() {
/**
* the menu
*/
var $menu = $('#ldd_menu');
/**
* for each list element,
* we show the submenu when hovering and
* expand the span element (title) to 270px
*/
$menu.children('li').each(function(){
var $this = $(this);
var $span = $this.children('span');
$span.data('width',$span.width());
$this.bind('mouseenter',function(){
$menu.find('.ldd_submenu').stop(true,true).hide();
$span.stop().animate({'width':'270px'},300,function(){
$this.find('.ldd_submenu').slideDown(300);
});
}).bind('mouseleave',function(){
$this.find('.ldd_submenu').stop(true,true).hide();
$span.stop().animate({'width':$span.data('width')+'px'},300);
});
});
});