0

我正在使用此示例中的 superfish 菜单: http ://users.tpg.com.au/j_birch/plugins/superfish/#examples(带有 Supersubs)。即使在 ie6 中,它也适用于所有浏览器!当我完成将它复制到我的项目时,一切似乎都很好,但只有 IE6 会出现问题。下拉菜单没有出现,真的找不到问题!我什至尝试了相同的 jquery 版本(如示例)。这是我的菜单:http ://tvim.de/cmsms/ 你们知道有什么问题吗?谢谢!

4

1 回答 1

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'} 
    });
});

这被称为死亡逗号。一旦我删除了它,你的菜单就开始工作了,尽管你的二级菜单显示可能有问题。

http://jfcoder.com/test/missplacedcomma.html

于 2011-06-12T00:45:10.377 回答