我想用同一对象的另一个属性的值设置一个属性。请参见以下代码:
<html>
<body>
<div id="container" style="width: 90px;"></div>
<script>
my_object = {
node : document.getElementById("container"),
style : window.getComputedStyle(this.node)
};
</script>
</body>
</html>
这种方式不起作用。调试器说:
TypeError:this.node未定义
为什么不行,怎么解决?