document.body 为空
我有一个页面,其中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能只能在从 getElementById 返回的元素上使用 $。一个简单的解决方法是使用 $$。
You may only be able to use $ on an element returned from getElementById. A simple workaround is to instead use $$.