我是 js oop 的新手,到目前为止有以下代码:
(function (ns) {
ns.addSection = function (name, def) {
ns[name] = new def();
}
}(this.PG_GuiHelper = this.PG_GuiHelper || {}));
/**
* HOVERTIP
*
* shows submenu on click / hover
*/
PG_GuiHelper.addSection('hovertip',function(){
var section = this;
/**
* init
*/
section.init = function() {
section.registerListener();
}
现在我有第二个文件,其中包含表单助手。也使用与此代码相同的 ns 闭包。两者都工作正常。
目标:
文件 ns.js
(function (ns) {
ns.addSection = function (name, def) {
ns[name] = new def();
}
}(this.PG_Library = this.PG_Library || {}));
现在我的问题是:我如何向现有的悬停提示助手添加一个新的“部分”以至少获得此调用:PG_Library.guiHelper.hovertip.init();
现有的调用现在是:PG_GuiHelper.hovertip.init()。我希望你明白我的意思。1 ns 函数适用于所有文件。每个文件都可以有自己的小节。并且所有都由 PG_Library.section.subsection.function() 处理。