我正在网站上工作,它在Safari,Firefox,Chrome和IE8中运行/看起来很棒。出于某种原因,在IE 6和7中测试它时,jQuery不起作用(图像在那里但是静态)我得到以下错误信息:
Internet Explorer脚本错误。 行:38 Char:1 错误:预期标识符,字符串或数字 代码:0
有人可以帮我解决这个问题吗? Internet Exploder正在杀了我......
答案 0 :(得分:3)
正如我上面推测的那样......你的配置对象中有逗号逗号。请参阅下面的评论。
$('#ourClientsRight').cycle({
fx: 'fade',
speed: 600,
timeout: 4000,
delay: 1000, // this comma should not be here
});
$('#ourCarriers').cycle({
fx: 'scrollRight',
speed: 600,
timeout: 7000,
delay: 1000, // this comma should not be here
});