美文网首页
Date日期类

Date日期类

作者: 没了提心吊胆的稗子 | 来源:发表于2019-07-07 17:11 被阅读0次
    var time = new Date(); // 获取客户端本机时间,日期格式
    Sun Jul 08 2019 16:37:50 GMT+0800 (中国标准时间)
    typeof new Date()  -> 'object'
    
    time.getFullYear()  // 获取四位整数年
    time.getMonth()  // 获取月  0-11代表1-12月
    time.getDate()   // 获取日
    time.getDay()   // 获取星期几  0-6 表示周日到周六
    
    time.getHours()  // 获取时
    time.getMinutes()  // 获取分
    time.getSeconds()  // 获取秒
    time.getMilliseconds()  // 获取毫秒
    
    time.getTime()  // 获取当前日期与1970-01-01 00:00:00 的毫秒差
    
    var time = new Date('2019-07-07'); 
    // 传递时间格式字符串,相当于把该时间转为标准时间格式字符串,之后就可以调用以上时间的方法
    // 时间格式字符串
    '2019-07-07'  IE无法识别
    '2019/07/07'
    '2019/07/07 16:54:22'
    '1527584521' (距1970-01-01 00:00:00 的毫秒差)
    

    相关文章

      网友评论

          本文标题:Date日期类

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