我这样声明一个数组
var positions = [];
或者
var positions = new array();
无论哪种方式都有效
稍后在脚本中添加一个值
positions[0].top = 0;
除 ie7 外,其他浏览器都正常出现此错误
Error: Unable to set value of the property 'top': object is null or undefined
还有另一种方法可以让我在 ie7 中填充 arra 吗?