0

我试图在将鼠标悬停在页面徽标上时显示隐藏的 div。

该网站是:http ://www.enbloc-magazin.de/

正如我所说,我想在将鼠标悬停在徽标上时显示一个容器(#snowflakesContainer,显示:无;)。

我使用了几个脚本,例如:

$('#logo').hover(function() {
    $('#snowflakesContainer').toggle();
});

但没有任何效果。

隐藏容器的css是:

#snowflakesContainer {
top: -553px;
position: absolute;
width: 100%;
height: 100%;
display: none;
}

谢谢你的帮助!

4

1 回答 1

0

控制台在您的 facebook jssdk 代码上显示错误。

Uncaught TypeError: Cannot call method 'getElementsByTagName' of null 

在第 8 行:

 button    = container.getElementsByTagName( 'h1' )[0],

尝试将其放在页面下方,以便您有机会加载您的内容。你的 javascript 应该可以工作到那里。

于 2013-06-27T10:09:12.040 回答