document.body 为空

发布于 2024-08-23 15:44:10 字数 764 浏览 7 评论 0原文

我有一个页面,其中使用 Mootools 1.2.4 和 MediaboxAdvanced 作为灯箱。由于特定的 javascript 错误,我似乎无法让该功能正常工作

document.body 为空

Mediabox 初始化时

$(document.body).adopt(
     $$([
          overlay = new Element("div", {id: "mbOverlay"}).addEvent("click", close),
          center = new Element("div", {id: "mbCenter"})
     ]).setStyle("display", "none")
); 

:页面位于此处。如果您单击此人的姓名、图片或右下角的“更多信息”按钮,应该会启动 Mediabox。通过Firebug,我确认CSS正在加载,mootools正在加载,Mediabox脚本正在加载;所有图像路径以及一切都正确。

有什么想法吗?

I've got a page where I'm using Mootools 1.2.4 and MediaboxAdvanced as a lightbox. I can't seem to get the thing working because of a particular javascript error

document.body is null

at the initialization of Mediabox:

$(document.body).adopt(
     $([
          overlay = new Element("div", {id: "mbOverlay"}).addEvent("click", close),
          center = new Element("div", {id: "mbCenter"})
     ]).setStyle("display", "none")
); 

The page is here. If yo uclick on the guy's name, picture, or the More Info button on the bottom right, it is supposed to launch the Mediabox. Via Firebug, I have confirmed that the CSS is loading, mootools is loading, and the Mediabox script is loading; all the paths to images and everything are correct as well.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

慕烟庭风 2024-08-30 15:44:10

您可能只能在从 getElementById 返回的元素上使用 $。一个简单的解决方法是使用 $$。

$('body')[0].adopt...

You may only be able to use $ on an element returned from getElementById. A simple workaround is to instead use $$.

$('body')[0].adopt...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文