IE jQuery对象错误SCRIPT5007

时间:2015-05-04 12:34:30

标签: javascript jquery internet-explorer

我正在尝试访问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。

2 个答案:

答案 0 :(得分:0)

start_position => 'end'

中添加此行
header

它会起作用!!

答案 1 :(得分:0)

我现在在本地系统上试过了。它们是2个错误:

  1. 已知遗失)
  2. items.push(new Item(1, [0, 40], 'asd');

    items.push(new Item(1, [0, 40], 'asd'));

    1. 你要求错误的var名称
    2. item[0].position[0]

      items[0].position[0]

      尝试了它本地,它工作正常!