gpt4 book ai didi

jQuery 应用程序模式/架构

转载 作者:行者123 更新时间:2023-12-01 05:57:17 25 4
gpt4 key购买 nike

我正在寻找 jQuery 应用程序架构的最佳实践。

这个示例可以工作,但我认为这不是最好的方法。

我们有内核功能(加载配置、初始化子模块等)和选项卡 dub-module 作为示例。

"use strict";
(function($, app, window) {

app.kernel = function() {
var self = this;
app.tabs().init(); // init tabs sub-module
return self;
};

app.tabs = function() {
var self = this;
self.init = function() {
console.log('tabs function init');
};
return self;

};

})(jQuery, window.SuperPuper || (window.SuperPuper = {}), window);

$(function() {
new SuperPuper.kernel();
});

创建了一些 Material :

  1. Using Inheritance Patterns to Organize Large jQuery Applications
  2. How To Write Maintainable jQuery Applications

最佳答案

有关 jQuery 模式的最佳资源由 Addy Osmani 编写,他已将有关该主题的所有其他 Material 编译成易于理解的形式:

http://addyosmani.com/blog/essential-jquery-plugin-patterns/

关于jQuery 应用程序模式/架构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14413246/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com