我正在尝试访问JQuery对象变量
var items = [];
function Item(id, position, content) {
this.id = id;
this.position = position;
this.content = content;
}
我正在通过
创建一个新元素items.push(new Item(1, [0, 40], 'asd');
然后我在调用
时循环遍历数组中的所有项目item[i].position[0]
我收到错误SCRIPT5007
。在Chrome和FF中这很好用,唯一的问题是IE。
答案 0 :(得分:0)
在 start_position => 'end'
header
它会起作用!!
答案 1 :(得分:0)
我现在在本地系统上试过了。它们是2个错误:
)
: items.push(new Item(1, [0, 40], 'asd');
到
items.push(new Item(1, [0, 40], 'asd'));
item[0].position[0]
到
items[0].position[0]
尝试了它本地,它工作正常!