我在 menu (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');
});