Superfish 下拉菜单不会出现在 IE6 中

发布于 2024-11-14 19:25:16 字数 399 浏览 4 评论 0原文

我正在使用本示例中的 superfish 菜单: http://users.tpg.com.au/j_birch/plugins/superfish/ #examples(带有超级替补)。 它在每个浏览器中都工作得很好,甚至在 ie6 中也是如此! 当我将其复制到我的项目中后,一切看起来都很好,但只有 IE6 会出现问题。下拉菜单没有出现,实在找不到问题所在!我什至尝试了相同的 jquery 版本(如示例)。 这是我的菜单:http://tvim.de/cmsms/ 你们知道出了什么问题吗? 谢谢!

I am using the superfish menu from this example:
http://users.tpg.com.au/j_birch/plugins/superfish/#examples (with Supersubs).
It works great in every browser even in ie6!!
When i finished copying it to my project, everything seems fine but just IE6 makes problems. the dropdown does not appear and really cant find the problem! i even tried the same jquery version (like the example).
here is my menu: http://tvim.de/cmsms/
do you guys know whats wrong??
thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甲如呢乙后呢 2024-11-21 19:25:16

在此代码中,您遇到了一个偷偷摸摸的问题:

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

In this code, you have a sneaky problem:

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

This was called the Trailing Comma of Death. Once I removed that, your menu began working, although you might have an issue with your second-level menus displaying.

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文