zQuery索引与jQuery标签,Superfish菜单有关

对于我的生活,我不能让我的Superfish菜单停止隐藏在IE 7中的jQuery UI选项卡后面。我已经阅读了那里的文档,尝试更改z-index值并尝试了bgIframe插件,虽然我不确定是否我正确地实现它(在下面的例子中省略了,使用Supersubs)。

这是我用于Superfish的Javascript – 使用Supersubs插件:

$(document).ready(function() { $("ul.sf-menu").supersubs({ minWidth: 12, // minimum width of sub-menus in em units maxWidth: 27, // maximum width of sub-menus in em units extraWidth: 1 // extra width can ensure lines don't sometimes turn over // due to slight rounding differences and font-family }).superfish({ delay: 1000, // one second delay on mouseout animation: {opacity:'show',height:'show'}, // fade-in and slide-down animation speed: 'medium' // faster animation speed }); }); 

这是我的页面结构:

  

您是否尝试在要设置z-index的元素上设置position:relative? 这通常可以解决问题。