类方法不是调用

时间:2013-10-02 18:48:36

标签: javascript jquery class

我使用类插件

编写了以下类
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()

0 个答案:

没有答案