【发布时间】:2012-09-26 14:18:50
【问题描述】:
var o = {}; // Creates a new object
使用defineProperty 和数据属性描述符添加的对象属性示例
Object.defineProperty(o, "a", {value : 37,
writable : true,
enumerable : true,
configurable : true});
IE7-8如何实现?(属性可写、可枚举、可配置)
【问题讨论】:
-
根据MDN,在 IE9 之前的 IE 中(几乎)不支持。
-
你不能,不是真的......阅读check the list here和check this question, too了解更多信息
标签: javascript