0

私は Drupal を使用しており、jQuery は.animation is not a function. このエラーが発生するのはなぜですか?

(function($){
    var cg_parent = "#block-views-content_gallery-cg_block";
    var cg_items = cg_parent + " ul";
    var cg_item = cg_items + " li";

    $(cg_item + ".views-row-first div.cg_item").addClass("active");
    $(cg_item + ".views-row-first div.cg_item").bind("mouseenter", function() {
        $("div.cg_item.active div.cg_body_content").animation({ left: '100px' }, 100, function() {
            alert("je;;p");
        });
    });
})(jQuery);

http://jsfiddle.net/seejee/sYFR9/7/

4

2 に答える 2

1

メソッドの名前animateは not animation:

$("div.cg_item.active div.cg_body_content").animate({ left:'100px' }, 100, function() {  
    alert("je;;p");
});
于 2013-02-03T13:18:56.600 に答える
0

に置き換えanimationてくださいanimate、そうすればこれでうまくいきます:)

于 2013-02-03T13:35:24.853 に答える