您可以使用括号表示法来获取对象:
var items = {};
items.obj1 = {};
var type = 'obj1';
var myFunc = function(type){
var newObj = items[type]; //returns items.obj1
};
如何使用构造函数动态创建对象?
var Constructor1 = function() {};
var Constructor2 = function() {};
var type = 'Constructor2';
var myFunc = function(type){
var newObj = new type(); // how do you invoke either constructor?
};
答案 0 :(得分:1)
在您的示例中,请尝试以下操作:
var myFunc = function(type) {
return new window[type]();
}