我在本页面底部加载轮播时遇到问题:http://bucharestcitytour.com/Treasures_of_Romania_Tour#
首先我加载了jQuery并修复了出现的大多数错误,但现在我在Firebug的控制台中遇到错误:
TypeError: crossobj is null
contentheight[contentID]=crossobj.offsetHeight
尝试在Google和SO上搜索此类问题的答案,但无法找到任何内容,这是我发现的唯一类似错误TypeError: arr is null并且它没有答案
该错误消息的含义是什么?如何解决?请注意,在JS / jQuery方面,我是一个初学者。
更新
以下是代码部分:
function getInitialSize(contentID,containerID){
var crossobj=document.getElementById(contentID);
var crossCobj=document.getElementById(containerID);
contentheight[contentID]=crossobj.offsetHeight
contentwidth[contentID]=crossobj.offsetWidth
containerheight[contentID]=crossCobj.offsetHeight
containerwidth[contentID]=crossCobj.offsetWidth
//alert(containerwidth[contentID]);
}
为了更好地理解,您可以查看与Firebug的链接,它会引导您到达问题所在的行,即contentheight[contentID]=crossobj.offsetHeight
。