我的jQuery源碼讀後感-jquery1.11.x 整合了 AMD

來源:互聯網
上載者:User

標籤:class   code   java   com   檔案   string   

jquery1.11.x 整合了 AMD

AMD 加入到了 jQuery, jQuery 把源碼切分成各個邏輯模組.

  1. ready 整合成依賴 Deferred 的模組.
  2. 有些模組被切分成一些更加利於維護的片段.
  3. var 檔案夾指定的模組只包含共用的變數聲明.
          (function( global, factory ) {     if( typeof module === "object" && typeof module.exports === "object" ) {         // 對於CommonJS的和CommonJs的類似環境中, 如果存在一個適當的window,         // 則執行globalFactory 方法,擷取jQuery對象;         // 在那些天生不擁有window,document的環境中,比如Node.js,         // 弄了個jQuery做的factory伺候module.exports;         // 這個突出了建立一個真正window的需求         // e.g var jQuery = require("jquery")(window);         module.exports = global.document ? factory( global, true) : function( w ) {             if( !w.document ){                 throw new Error(" jQuery requires a window with a document" );             }             return factory( w );         };     } else {         factory( global );     } }(typeof window !== "undefined" ? window : this, function( window, noGlobal ){     var jQuery = {};     return jQuery; })); // 大概意思就是jQuery現在支援Node了,在Node中把global作為window使.    

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.