如何使用 javascript 将类名作为变量传递?
假设我有类 Person。
我想将类的名称传递给一个函数,以便该函数可以调用该类。
所以函数是
function openClass(name)
我想通过
openClass('person')
这样openClass就可以调用类人
例如
function openClass(name)
{
return new name() // here I want this line to actually
// call the class "Person" if that is
// what is passed in as a name parameter,
}