我有我的'setInterval'函數的問題,我想啓動函數,當我徘徊我的div,但setInterval工作就在第一次當我把div放在div上時>如果我留在div上,它不會一直改變圖片,而是停止'setinterval'。jQuery setInterval /懸停:它工作一次,但然後停止setInterval
這是mouseenter的問題嗎?我試着'懸停'等,但似乎沒有任何竅門。
有沒有人有解決方案?
非常感謝你的幫助,這是我的代碼:
img.bind('mouseenter', function(){
setInterval(next($(this)),1000);
});
function next(elem){
var img_li = elem.find('li');
count++;
if (count>2) count=0;
img_li.eq(count).fadeIn('fast', function(){
img_li.eq(current).css({'display':'none'});
current = count;
});
}
好吧,它完美的作品!謝謝! – Paul 2011-04-11 14:23:35