0

我正在寻找动态设置对象的属性。看下面的例子。

function testFunc(type, scope){
    this.scope = scope;
    this.scope.setAttribute(type, true);
    this.doSome = function(){return //Something;}
}

但我意识到该setAttribute方法仅适用于 DOM 元素。有没有办法可以动态地将属性设置为 js 对象?

4

1 回答 1

2
function testFunc(type, scope){
    this.scope = scope;
    this.scope[type]= true;
    this.doSome = function(){return //Something;}
}

应该做的伎俩。

于 2013-03-16T08:28:55.850 回答