开发者

jQuery clearInterval not working

开发者 https://www.devze.com 2023-03-18 13:49 出处:网络
I have the following hover function function tt_attachToBase(){ jQuery.each(bases, function(index,base){

I have the following hover function

function tt_attachToBase(){
        jQuery.each(bases,
            function(index,base){

                jQuery(b开发者_JS百科ase).hover(function() {  
                         jQuery(base).showTipTimer = setInterval( function(){tt_locateBase(base);} , 3000 ); 
                             },  
                            function() {  
                                clearInterval(jQuery(base).showTipTimer);
                                tt_hideTip();
                                    }

                    }); 
            }

        );

inside tt_locateBase() I also clear interval like this

tt_locateBase(base){
clearInterval(jQuery(base).showTipTimer);
//code to sidplay tooltip
}

the tooltip does display after an interval, but the interval it seems is never cleared since the tooltip keep recurring over base. what am I doing wrong?


Setting a property to the return value of jQuery(base) will only affect that specific object. If you fetch jQuery(base) a second time it won't be carrying that property.

What you're currently doing is equivalent to the code below:

function return_something() {
    return ['foo', 'bar'];
}

var first_fetch = return_something();
// => ['foo', 'bar']
first_fetch.push('baz'); // => ['foo', 'bar', 'baz']

var second_fetch = return_something(); // => ['foo, 'bar']

Solution

Attach it as a data field instead, perhaps? This way, it will affect the actual object in the DOM, and the jQuery object will carry that data value in subsequent fetches.

jQuery(base).data('showTipTimer', 
  setInterval(function(){tt_locateBase(base);} , 3000));

Then clear with:

clearInterval(jQuery(base).data('showTipTimer'));


have you tried this:

   jQuery(base).hover(function() {  
         var idInterval = setInterval( function(){tt_locateBase(base, idInterval);} , 3000 ); 
                         },  

and then

tt_locateBase(base, i){
clearInterval(i);
//code to sidplay tooltip
}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号