无法触发click.namespace

时间:2014-08-11 09:32:55

标签: javascript jquery

我有以下代码:

if (auto != 0){
    var me = this;
    $('.small-arrow-right').on('click.auto', function(event){
        me.next(true)
    });
    slideshow = setInterval(function(){
        $('.small-arrow-right').trigger('click.auto');
    }, auto);
}

但它没有触发任何东西。我已经打破了我的脑袋,但仍然无法找到原因。

2 个答案:

答案 0 :(得分:0)

您的代码似乎有效,可能是me.next(true)

之后的分号(;)

现场演示:http://jsbin.com/dazalo/4/edit?html,js

不要忘记查看浏览器控制台

答案 1 :(得分:0)

也许这是因为.small-arrow-right有另一个onclick处理程序只是谷歌分析目标?