为按钮添加点击事件时为什么要这样设置:
this.nextBtn.click(function(){
self.carouselRotate();
})
而不是这样设置:
this.nextBtn.click( this.carouselRate() );
语法问题,我懂了。。。。