我正在创建一个这样的原型类,但我想使用字符串作为函数名来调用函数。我找到了窗口名称;例如某处,但它不适用于我的情况。
function someObj() {
this.someMethod = function() {
alert('boo');
name = "someOtherMethod";
window[name]();
}
var someOtherMethod = function() {
alert('indirect reference');
}
}