有没有办法将类名加载为变量? new window[a]
似乎不起作用。我收到TypeError: window[a] is not a constructor
的错误。
require([
'myController'
], function (myController) {
// this is working fine
// new myController().init();
$(function() {
var a = $('.test').attr('class'); // this returns myController
new window[a]; // error here
});
});
答案 0 :(得分:-1)