我正在寻找动态设置对象的属性。看下面的例子。
function testFunc(type, scope){
this.scope = scope;
this.scope.setAttribute(type, true);
this.doSome = function(){return //Something;}
}
但我意识到该setAttribute
方法仅适用于 DOM 元素。有没有办法可以动态地将属性设置为 js 对象?
我正在寻找动态设置对象的属性。看下面的例子。
function testFunc(type, scope){
this.scope = scope;
this.scope.setAttribute(type, true);
this.doSome = function(){return //Something;}
}
但我意识到该setAttribute
方法仅适用于 DOM 元素。有没有办法可以动态地将属性设置为 js 对象?