this.tabItem.mouseover(function(ev){
ev.stopPropagation();
window.clearTimeout(_this_.timer);
}).mouseout(function(){
_this_.autoPlay();
});当事件为mouseover时,除了要阻止冒泡意外,还要在mouseover中清除_this_.timer,在mouseout后再调用_this_.autoPlay()。
2.对于高版本的jQuery size()方法 用length代替即可;
ev.stopPropagation();
window.clearTimeout(_this_.timer);
}).mouseout(function(){
_this_.autoPlay();
});当事件为mouseover时,除了要阻止冒泡意外,还要在mouseover中清除_this_.timer,在mouseout后再调用_this_.autoPlay()。
2.对于高版本的jQuery size()方法 用length代替即可;