请查看下面的示例代码
var temp = {
load:function(x) {
//using x need to initialized an object or call a function
//example object name xConf.We need to do concatenate also
var obj=x+'Conf';
new obj(); // not working
global.obj.add() // not working
}
};
期待您的建议。
答案 0 :(得分:0)
以下内容应该有效:
global[x + 'Conf'].addConfig();
这并不是假设该对象在全局命名空间中可用。