5

我正在创建的新网站上收到此未捕获的 TypeError,但我无法找出导致错误的原因。

我在下面的链接中重新创建了问题,如果您查看浏览器的 JS 控制台,您会看到错误发生,但没有其他任何反应。

http://jsfiddle.net/EbR6D/2/

代码:

$('.newsitem').hover(
$(this).children('.text').animate({ height: '34px' }), 
$(this).children('.text').animate({ height: '0px'  }));​
4

4 回答 4

5

请务必将它们包装在异步回调中:

$('.newsitem').hover(
    function() {
        $(this).children('.title').animate({height:'34px'});
    }, function() {
        $(this).children('.title').animate({height:'0px'});
    }
);
​
于 2012-06-14T12:08:08.820 回答
3

你需要:

.hover(function(){ ... });

根据文档

于 2012-06-14T12:05:47.747 回答
2

你错过了function...

$('.newsitem').hover(
    $(this).children('.text').animate({height:'34px'}),
    $(this).children('.text').animate({height:'0px'})
);

到:

$('.newsitem').hover(function() {
    $(this).children('.text').animate({
        height: '34px'
    });
}, function() {
    $(this).children('.text').animate({
        height: '0px'
    });
});​
​

而<code>$(this).children('.text'),没有选择任何东西。

于 2012-06-14T12:06:34.607 回答
0

使用幻灯片动画来处理 .text 类的高度。

$('.newsitem').hover(function() {
    $(this).children('.text').slideToggle();
});​
​
于 2012-06-14T12:24:03.213 回答