答案 0 :(得分:2)
首先引起我注意的是'#prev'之后的额外逗号:
$('#imagesFade').cycle({
fx: 'scrollRight',
speed: 200,
timeout: 3000,
next: '#next',
prev: '#prev' ,
});
IE很挑剔。
答案 1 :(得分:2)
尝试从
中删除多余的逗号(,) $('#imagesFade').cycle({
fx: 'scrollRight',
speed: 200,
timeout: 3000,
next: '#next',
prev: '#prev' , /* <-- this comma should be removed */
});
当我删除并重新运行已编辑的代码时,幻灯片显示工作正常(以及随后的任何内容,以及)