document.getElementById为null? ......我的代码有什么问题..?

时间:2015-03-06 09:20:53

标签: javascript jquery ruby-on-rails

为什么我得到" document.getelementbyId为null" ??? 任何帮助都很感激。谢谢。 ...(并说它需要在我提交之前输入更多文字...)

// get current date - in format
  function thisDate(){
    var today = new Date(),
     dd = today.getDate(),
     mm = today.getMonth() + 1, 
     yyyy = today.getFullYear();

    if (dd < 10) {
      dd = '0' + dd
    }

    if (mm < 10) {
      mm = '0' + mm
    }

    today = mm + ',' + dd + ',' + yyyy;

    dateDisplay =  document.getElementById('dateDisplay')[0];
    dateDisplay.innerHTML = today.toString();
    console.log(today);
  }
  thisDate();

1 个答案:

答案 0 :(得分:2)

[0]

中删除document.getElementById('dateDisplay')[0];

document.getElementById不返回数组,因此没有指向索引指针。