これがコードです。li
項目にカーソルを合わせると、タブがアニメーション化され、入力フィールドを含む同じ幅270px
のドロップダウンが同時に開きますが、マウスをdivから移動するか、オプションリストから何かを選択しようとすると、ドロップダウンが閉じます.この問題の遅延またはその他の解決策が必要ですdiv
dropdown
$(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);
});
});
});