2

我在我的网站上遇到的问题很少,我不知道如何解决这些问题。

请访问http://link.zambeel.ca/index.php/component/obituary/detail/52并单击照片选项卡,它不会在 IE9 和 Chrome 中及时加载图像。我使用以下代码使其在 Firefox 中工作:

var loadNextTab = function() {
if (indexesToLoad.length == 0) return;
var index = indexesToLoad.shift();
$("#tabs-1").tabs("load",index);
};

$("#tabs-1").tabs({
cache: true,
load: loadNextTab
});

请尽快帮我解决这个问题。

只是让你们知道,我无论如何都不是程序员。

4

1 回答 1

1

当我访问您在 IE 9 上发布的 URL 时,它在错误控制台中向我抛出了以下错误。

Unable to get value of the property 'tabs': object is null or undefined

现在,如果您的 JavaScript 在 HTML 之前加载,通常会出现此错误。为防止这种情况,请将上述所有代码放入就绪事件中

$(document).ready(function() {
  // All code you posted above should come in here which initializes the tabs.
});
于 2012-09-02T03:53:36.333 回答