美文网首页
时间对象

时间对象

作者: 六月太阳花 | 来源:发表于2017-02-06 10:24 被阅读0次

    var oDate = new Date();
    年:oDate.getFullYear();
    月: oDate.getMonth();
    日 : oDate.getDate();
    星期: oDate.getDay();
    小时: oDate.getHours();
    分钟: oDate.getMinutes();
    秒: oDate.getSeconds();
    时间戳: 距1970年的毫秒数, oDate.getTime();
    ---日期 会自动进位
    oDate.setFullYear(年,月,日)
    oDate.setFullYear(年,月)
    oDate.setFullYear(年);
    oDate.setMonth(月,日);
    oDate.setMonth(月);
    oDate.setDate(日);
    oDate.setHours(时,分,秒,毫秒);
    oDate.setHours(时,分,秒);
    oDate.setHours(时,分);
    oDate.setHours(时);

    相关文章

      网友评论

          本文标题:时间对象

          本文链接:https://www.haomeiwen.com/subject/ssmyittx.html