Override jQuery functions

后端 未结 2 695
悲哀的现实
悲哀的现实 2020-11-28 10:23

Is there way to override jQuery\'s core functions ? Say I wanted to add an alert(this.length) in size: function() Instead of adding it in the source

size: f         


        
2条回答
  •  北海茫月
    2020-11-28 11:03

    You almost had it, you need to set the this reference inside of the old size function to be the this reference in the override function, like this:

    var oSize = jQuery.fn.size;
    jQuery.fn.size = function() {
        alert(this.length);
    
        // Now go back to jQuery's original size()
        return oSize.apply(this, arguments);
    };
    

    The way this works is Function instances have a method called apply, whose purpose is to arbitrarily override the inner this reference inside of the function's body.

    So, as an example:

    var f = function() { console.log(this); }
    f.apply("Hello World", null); //prints "Hello World" to the console
    

提交回复
热议问题