0

私は Malsup の jQuery Cycle プラグインを使用しており、それを適切に実行し、アクティブなスライドにクラス .current を追加する次のコードがあります。

$('#banner') 
    .cycle({ 
    fx: 'fade', 
    speed: '1000', 
    timeout: '8000', 
    pager: '#pager',
    next: '#next',
    prev: '#prev',
    cleartypeNoBg: 'true',
    before: function(){
       $(this).parent().find('.current').removeClass();
    },
    after: function(){
       $(this).addClass('current');
    }
});

今私がやりたかったこと (コードをテストするため) は、.current クラスがスライドしたときにアラートをトリガーすることです。私が試してみました:

$('#banner').find('.current').change(function(){
    alert('hello');
});

しかし、それはまったく機能しませんでした。私が間違っているのは何ですか?

4

1 に答える 1