jQuery .remove不是一个函数

时间:2013-12-08 21:48:05

标签: javascript jquery

我已经在这里抨击了几天。

Blog.closeNewPostForm = function(event) {
    var $createPost = $('#create-post');
    $createPost.addClass('bounceOut animated');
    setTimeout(function() {
       $createPost.slideUp('normal', function() {
           $createPost.remove();
       });
    }, 1000);
};

此代码运行良好,直到它到达remove()方法/函数,然后控制台显示remove()不是函数的错误。

你们有什么想法发生了什么?它让我疯狂>。<

编辑:

可能有助于查看console.log屏幕截图及其github链接https://github.com/Lavoaster/LightBlog

1 个答案:

答案 0 :(得分:0)

基本上我发现我在某个地方有一个糟糕的依赖,凉亭认为很好,从未更新/替换,在删除我的组件目录并再次运行bower update后,它被修复了。