我正在使用此示例中的superfish菜单: http://users.tpg.com.au/j_birch/plugins/superfish/#examples(与Supersubs一起)。 它甚至在ie6中也适用于所有浏览器! 当我把它复制到我的项目时,一切似乎都很好但只是IE6会产生问题。下拉列表没有出现,真的无法找到问题!我甚至尝试了相同的jquery版本(如示例)。 这是我的菜单:http://tvim.de/cmsms/ 你们知道什么是错的? 谢谢!
答案 0 :(得分:1)
在此代码中,您有一个偷偷摸摸的问题:
jQuery(document).ready(function(){
jQuery("#navi ul").supersubs({
minWidth: 12,
maxWidth: 27,
extraWidth: 1, // <<< RIGHT HERE, remove the comma
}).superfish({
autoArrows:false,
dropShadows: false,
speed:'fast',
animation: {opacity:'show',height:'show'}
});
});
这被称为Trailing Comma of Death。删除后,您的菜单开始工作,尽管您的二级菜单可能会出现问题。