Javascript检查类是否已存在

时间:2014-09-18 11:36:42

标签: javascript

你好我需要检查构造函数,如果该类已经存在,我该怎么办?

我有这样的事情:

var MyNamespace = MyNamespace || { 

    MyClass: function(string){
     this.string = string;
     this.sayHello = function(){
        return this.string;
     }
   }

};

1 个答案:

答案 0 :(得分:2)

你可能正在寻找这样的东西:

var MyNamespace = MyNamespace || {};
MyNamespace.MyClass = MyNamespace.MyClass || function(string){
    this.string = string;
    this.sayHello = function(){
        return this.string;
    }
}