do something when function executes Jquery

后端 未结 2 1531
孤城傲影
孤城傲影 2020-12-22 11:54

So I have a function that is recursive for inverting colors. Here is the code:

function invert(id,what){
    var color = $(id).css(what);
    var matchColors         


        
2条回答
  •  误落风尘
    2020-12-22 12:00

    I am not sure what your exact scenario is, but maybe you could override the function with a wrapper:

    var invertOriginal = invert;
    var counter = 0;
    
    var invert = function(id, what, max) {
      invertOriginal(id, what, max); 
    
      // do counter stuff here, e.g.
      counter++; 
    };
    

提交回复
热议问题