//图片切换
_slideAction: function(idx) {
this.sliderItems.eq(idx).stop(true, true).fadeIn(500)
.siblings().stop(true, true).fadeOut(500);
this.yuanItems.eq(idx).addClass('cur')
.siblings().removeClass('cur');
},stop里面添加两个参数 ,都为true,应该就可以了
第一个参数表示规定是否停止被选元素的所有加入队列的动画。
第二个参数表示规定是否允许完成当前的动画。