欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

jquery mobile源碼

林玟書2年前9瀏覽0評論

JQuery Mobile(以下簡稱jQM)是一個基于JQuery庫開發的移動設備Web應用程序開發框架。它提供了一些易于使用的UI元素,如按鈕、列表、表格等,還可以很容易地創建主題以匹配您的應用程序外觀。JQM的源代碼倉庫位于GitHub上,并遵循著MIT許可協議。

如果您有使用JQM的打算,那么通過熟悉JQM的源代碼可以讓您更好地理解該框架的工作方式。可以通過以下步驟從GitHub上檢索jQM的源代碼:

git clone git://github.com/jquery/jquery-mobile.git

被克隆下來的所有文件和文件夾總共占用大約240MB的磁盤空間,其中包含demo和tests文件夾以及核心jQM庫和相關插件。

在JQM的源代碼中,核心庫文件使用單一文件形式,稱為“jquery.mobile.js”。JQM使用AMD module的方式,組成了一個單獨的module。在加載JQM之前,您需要先加載JQuery庫,JQM應該在JQuery的底層進行注冊。

define( [ "jquery", "./jquery.mobile.defaults", "./jquery.mobile.ns", "./jquery.mobile.degradeInputs", "./jquery.mobile.activeindex", "./jquery.mobile.zoom", "./jquery.mobile.support", "./jquery.mobile.media", "./jquery.mobile.transitionHandlers", "./jquery.mobile.transitionFallbacks", "./jquery.mobile.transition", "./jquery.mobile.helpers", "./jquery.mobile.data", "./jquery.mobile.removeFirstLastClasses", "./jquery.mobile.resultMessage", "./jquery.mobile.buttonMarkup", "./jquery.mobile.fixHeaderFooter", "./jquery.mobile.fixLoader", "./jquery.mobile.navigation", "./jquery.mobile.links", "./jquery.mobile.dialog", "./jquery.mobile.page", "./jquery.mobile.collapsible", "./jquery.mobile.collapsibleSet", "./jquery.mobile.fieldContain", "./jquery.mobile.grid", "./jquery.mobile.navbar", "./jquery.mobile.listview", "./jquery.mobile.formReset", "./jquery.mobile.checkboxradio", "./jquery.mobile.selectmenu", "./jquery.mobile.textinput", "./jquery.mobile.slider", "./jquery.mobile.toolbar", "./jquery.mobile.table", "./jquery.mobile.popup", "./jquery.mobile.popup.arrow", "./jquery.mobile.panel", "./jquery.mobile.panel.arrowcoords", "./jquery.mobile.panel.prototype.options", "./jquery.mobile.panel.options", "./jquery.mobile.panel.open", "./jquery.mobile.loader.prototype.options", "./jquery.mobile.loader", "./jquery.mobile.loaderWidget", "./jquery.mobile.dialog.prototype.options", "./jquery.mobile.demos", "./jquery.mobile.documentReady", "./jquery.mobile.init" ], function( $ ) {...

通過查看核心庫,您將能了解更多有關JQM框架的底層代碼實現,從而開發更高效的應用程序。