我使用类插件
编写了以下类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。需要在这里更改以调用init()