javascript – 未捕获TypeError:对象[object Object]没有方法’apply’

前端之家收集整理的这篇文章主要介绍了javascript – 未捕获TypeError:对象[object Object]没有方法’apply’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在我正在创建的新网站上收到此Uncaught TypeError,但我无法弄清楚导致错误的原因.

我在下面的链接中重新创建了这个问题,如果你看看你的浏览器JS控制台,你会看到发生错误,但没有其他事情发生.

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

码:

$('.newsitem').hover(
$(this).children('.text').animate({ height: '34px' }),$(this).children('.text').animate({ height: '0px'  }));​
最佳答案
一定要将它们包装在异步回调中:

$('.newsitem').hover(
    function() {
        $(this).children('.title').animate({height:'34px'});
    },function() {
        $(this).children('.title').animate({height:'0px'});
    }
);
​
原文链接:https://www.f2er.com/jquery/428613.html

猜你在找的jQuery相关文章