sIFR 3 无法在 IE6 或 IE7 中工作

发布于 2024-08-13 18:23:10 字数 162 浏览 8 评论 0原文

除了 IE 6 和 IE 7 之外,在任何地方都可以正常工作,有什么帮助吗?

http://www.zookacreative.com/beta

Works great everywhere but IE 6 and IE 7, any help?

http://www.zookacreative.com/beta

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

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

发布评论

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

评论(1

情丝乱 2024-08-20 18:23:10

我相信错误出现在您的 sifr-config.js

 sIFR.replace(nfslab, {
    selector: '#home h3.about,#ourapproach h3.about,#contactus h3.about, #mobile h3.about, #web h3.about, #affiliate h3.about, #environments h3.about, #branding h3.about, #packaging h3.about, #pop h3.about, #print h3.about',
  wmode: 'transparent',
  css: [
        '.sIFR-root { background-color: #FFFFFF; color: #000000; font-size: 16px; text-decoration: none; cursor: pointer; }',
        'a {color: #000000; text-decoration: none;}',
        'a:hover {color: #6BC8C6; text-decoration: none;}'
        ],
});

: Firefox 会慷慨地忽略列表中的尾随逗号,但 IE 不会。
这会搞乱 siFR 初始化过程。
我认为 IE 在这里失败是正确的。
您需要删除所有定义中的所有多余逗号。

I believe the error is in your sifr-config.js:

 sIFR.replace(nfslab, {
    selector: '#home h3.about,#ourapproach h3.about,#contactus h3.about, #mobile h3.about, #web h3.about, #affiliate h3.about, #environments h3.about, #branding h3.about, #packaging h3.about, #pop h3.about, #print h3.about',
  wmode: 'transparent',
  css: [
        '.sIFR-root { background-color: #FFFFFF; color: #000000; font-size: 16px; text-decoration: none; cursor: pointer; }',
        'a {color: #000000; text-decoration: none;}',
        'a:hover {color: #6BC8C6; text-decoration: none;}'
        ],
});

the trailing comma in the list is graciously ignored by Firefox, but not by IE.
This screws up the siFR initialization process.
I think IE is correct to fail here.
You will need to remove all extra commas in all definitions.

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