jquery-2.0.3 源码分析 整体架构

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery-2.0.3 源码分析 整体架构相关的知识,希望对你有一定的参考价值。

关键


  var jQuery = function( selector, context ) {
    return new jQuery.fn.init();
  }

  jQuery.fn = jQuery.prototype = {

    constructor: jQuery,

    name: \'hello\',

    init: function() {

      return this;

    }

  }

  jQuery.fn.init.prototype = jQuery.fn;

  var a = new jQuery();
  console.log( a.name )  //hello

 

扩展

jQuery.extend = jQuery.fn.extend = function() {

jQuery.extend 对jQuery本身的属性和方法进行了扩展 : 

jQuery.fn.extend 对jQuery.fn的属性和方法进行了扩展 : 

 

转载:

by Aaron:http://www.cnblogs.com/aaronjs/p/3278578.html

以上是关于jquery-2.0.3 源码分析 整体架构的主要内容,如果未能解决你的问题,请参考以下文章

jQuery.2.0.3源码分析01-整体架构思想

Tomcat源码分析-Tomcat整体架构

jQuery 2.0.3 源码分析 数据缓存

jQuery 2.0.3 源码分析 Deferrred概念

一步步去阅读koa源码,整体架构分析

jQuery 2.0.3 源码分析core - 选择器