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

即时通讯使用SimpleJqueryDropdown菜单.. 即时通讯测试IE7和8.当我将鼠标悬停在超链接的下拉菜单上时,它会消失。 我尝试了z-index,它在IE中不起作用.. 谁有这个问题b4 ??     
已邀请:
我以前遇到过这个问题。使用此jquery片段修复了它。下面的代码片段解决了我在本网站的问题。
<!--[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]-->
    

要回复问题请先登录注册