我在菜单(100)和Resizable Div(1)上设置Z-index。仍然菜单没有显示鼠标悬停阴影?我错过了什么 - 是css风格吗?
$( "#menu" ).menu();
$("#menu").find('li').each(function(){
$(this).css('zIndex','100');
$(this).find('a').each(function(){
$(this).css('zIndex','100');
});
});
$('#resize').resizable();
$('#resize').find('div').each(function(){
$(this).css('zIndex','1');
});
这里是小提琴 - http://jsfiddle.net/dekajp/yynPY/3/