Javascript和尖端阵列

这个问题在这里已经有了答案:

  • 如何将某些东西附加到数组中? 25个答案

  • 这个数组没有真正的名字,它只是一个Object Array 。 要附加一个新的Object你必须这样做:

    events.push({Title: '...', ...}); //define the object to be appended
    

    要定义一个新的Date对象,你应该使用这个构造函数:

    var d = new Date(year, month, day, hours, minutes, seconds, milliseconds);
    //in this case it will be(month goes from 0 to 11)
    new Date(2013, 4, 5); //this will be the 5th of May(which is 4)
    

    Date Object有很多方法,你只需要选择哪一个最适合你的目的!

    参考日期对象 - MDN

    链接地址: http://www.djcxy.com/p/17935.html

    上一篇: Javascript and tipped arrays

    下一篇: how to add values one by one in an array