0

这是我的代码:

function Todo(id, task, who, dueDate) {
    this.id = id;
    this.task = task;
    this.who = who;
    this.dueDate = dueDate;
    this.done = false;
}

var todos = new Array();

window.onload = init;

function init() {
    var submitButton = document.getElementById("submit");
    submitButton.onclick = getFormData;
    var searchButton = document.getElementById("button");
    searchButton.onclick = search;       
}


//function to add todo items to the todos array

function search() {
  for (var i = 0; i < todos.legnth; i++) {
     var todoObj = todos[i];
     console.log(todoObj[0]);
    }
} 

这不是我的所有代码,但最后一个函数是我遇到问题的地方。我似乎无法访问全局 todos 数组。我尝试将它作为参数传递给搜索函数。我什至尝试过 i < window.todos.length。我将不胜感激任何帮助。

4

1 回答 1

1

问题是你有一个错字。

代替

todos.legnth

todos.length
于 2013-02-20T18:50:58.293 回答