我使用类插件编写了以下类
if(typeof tech== 'undefined')tech= {};
window.tech= (function(){
//tech is a global object I have to add each individual class like 'map' to tech
});
tech.map = Class.extend({
//Constructor
init:function(props){
}
},
logError: function(){
}
});
在其他 JS 文件中,我尝试使用 tech.map.init(); 调用初始化函数;但是init没有被调用。这里需要改变什么来调用init()