在未登录的情况下在 Internet Explorer 中查看时,网站上的导航突然开始变得疯狂。但是,当您登录时......一切正常......
我知道这一定是样式表排序问题,但我没有找到解决办法。
您可以在这里使用用户名:bobo和密码:bobo登录 ,看看我在说什么。
提前感谢您查看
--
编辑
这是导航的 jQuery:
<script type='text/javascript'>
jQuery(document).ready(function ($) {
$('#access li').each(function(){
$(this).hover(function(){
$('> ul',this).show();
}, function(){
$('> ul',this).hide();
});
});
});
</script>