• What does jQuery.fn mean?


    n jQuery, the fn property is just an alias to the prototype property.

    The jQuery identifier (or $) is just a constructor function, and all instances created with it, inherit from the constructor's prototype.

    A simple constructor function:

    function Test() {
      this.a = 'a';
    }
    Test.prototype.b = 'b';
    
    var test = new Test(); 
    test.a; // "a", own property
    test.b; // "b", inherited property

    A simple structure that resembles the architecture of jQuery:

    (function() {
      var foo = function(arg) { // core constructor
        // ensure to use the `new` operator
        if (!(this instanceof foo))
          return new foo(arg);
        // store an argument for this example
        this.myArg = arg;
        //..
      };
    
      // create `fn` alias to `prototype` property
      foo.fn = foo.prototype = {
        init: function () {/*...*/}
        //...
      };
    
      // expose the library
      window.foo = foo;
    })();
    
    // Extension:
    
    foo.fn.myPlugin = function () {
      alert(this.myArg);
      return this; // return `this` for chainability
    };
    
    foo("bar").myPlugin(); // alerts "bar"
  • 相关阅读:
    元宇宙的特点
    Meta Network
    Decentraland
    Cryptovoxel
    The Sandbox Game
    Roblox
    JAVA参数传递
    静态方法使用@Autowired注入写法
    mysql索引
    Java中锁的分类
  • 原文地址:https://www.cnblogs.com/chucklu/p/9272275.html
Copyright © 2020-2023  润新知