ie6 中 jquery.min.js 错误

发布于 2024-08-19 14:52:50 字数 272 浏览 7 评论 0原文

IE g 给我以下错误:

行:79 字符:4 错误:意外的标识符、字符串或数字 代码:0

该网站是test.hatc.org

我使用的模板具有褪色图像、不透明度和滑动菜单。我在运行 IE8 并启用兼容模式的浏览器中看到了与 jquery.min.js 相关的错误,所以我认为这与此有关。

有人发现任何想法或类似错误吗?

谢谢。

IE g gives me the following error:

Line: 79
Char: 4
Error: Unexpected identifier, string or number
Code: 0

The website is test.hatc.org.

I am using a template that features fading images, opacity and sliding menus. I saw an error pertaining to jquery.min.js in a browser running IE8 with compatibility mode on, so I think it has something to do with that.

Any ideas or similar errors found by anyone?

Thanks.

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

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

发布评论

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

评论(1

多彩岁月 2024-08-26 14:52:50

该元素中有一个尾随逗号:

$('.slider-container').cycle({
fx:'fade',
timeout:0,
speed:400,
});

应该是:

$('.slider-container').cycle({
fx:'fade',
timeout:0,
speed:400 //NO comma here
});

在 IE8 中,他们更改了 JScript 引擎以实现最后一个逗号后没有数据 - 因此会像其他浏览器一样忽略它。

you have a trailing comma in this element:

$('.slider-container').cycle({
fx:'fade',
timeout:0,
speed:400,
});

Should be:

$('.slider-container').cycle({
fx:'fade',
timeout:0,
speed:400 //NO comma here
});

In IE8, they've changed the JScript engine to realize there is no data after the last comma - thus ignores it like other browsers.

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