幻灯片无法在IE for Windows中运行

时间:2010-08-04 15:22:37

标签: javascript

知道为什么会这样吗? 适用于Chrome和Firefox,但不适用于IE。 有没有我可以用来解决这个问题的脚本?

问题: http://www.isomham.com/TEST/hospitality/hamptoninn-murrellsinlet.html

1 个答案:

答案 0 :(得分:0)

在IE中检查过,我收到此错误:

Message: 'imagearray[...].0' is null or not an object
Line: 34
Char: 3
Code: 0
URI: http://www.isomham.com/TEST/Scripts/simplegallery.js

修复应该这样做

编辑:

实际上它认为代码:

var mygallery=new simpleGallery({...etc

需要被包围:

window.onload = function(){
   var mygallery=new simpleGallery({...etc
});

我认为该脚本试图在页面加载完成之前查找#simplegallery1。