当后面有IE中的链接时,下拉菜单消失

时间:2010-12-22 07:53:52

标签: css drop-down-menu

我正在使用SimpleJqueryDropdown菜单..

我在IE7和8上进行测试。当我将鼠标悬停在超链接的下拉菜单上时,它会消失。 我尝试了z-index,它在IE中不起作用..

任何人都有这个问题b4 ??

1 个答案:

答案 0 :(得分:0)

之前我遇到过这个问题。使用此jquery片段修复了它。下面的代码片段解决了this site中的问题。

<!--[if lte IE 7]>
$(document).ready(function() {
  // lower the z-index to negative to fix the overlapping drop-down menu problem
  // for IE browsers only
  // the check for support of leading white space should give us false for IE 6-8
  if(!jQuery.support.leadingWhitespace){
    $('.post-header').css('z-index', -2);
    $('.container').css('z-index', -2);
  }
});
</script>
<![endif]-->