-1

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

});

这是小提琴 - http://jsfiddle.net/dekajp/yynPY/3/

4

1 回答 1

1

也设置z-indexul标签上

更新小提琴

于 2013-07-05T22:16:56.137 回答