用变量调用函数

时间:2017-03-21 13:10:26

标签: javascript jquery

我试图用变量调用函数。

所以我需要调用函数

fnGetGroups()

在下面的代码中是尝试的内容。

if (data.name == "getChildren"){
     var contentType = "fnGet" + data.context.title;
     console.log(contentType);
     window[contentType](data.context);
}

如果我控制台记录变量:contentType它返回“fnGetGroups”

不在全局范围内定义fnGetGroups()

0 个答案:

没有答案