JS 时间对象

作者: 壬万er | 来源:发表于2017-05-08 16:47 被阅读3次

    一、创建日期对象

    Paste_Image.png

    二、时间转换

    Paste_Image.png
    1. toString()方法

    2.toLocalString() 方法

    3.valueOf()方法

    4.测试一段代码的执行时间

    Paste_Image.png

    三、获取修改时间

    Paste_Image.png

    1.getFullYear() 获取年份
    2.setFullYear() 修改年份

    Paste_Image.png

    3.getMoth() 获取月份
    4.setMoth() 修改月份

    Paste_Image.png

    5.getDate() 获取日期
    6.setDate() 修改日期

    Paste_Image.png

    7.getDay() 获取星期

    Paste_Image.png

    8.getHours() 获取小时
    9.setHours() 设置小时

    Paste_Image.png

    10.getMinutes() 获取分钟
    11.setMinutes() 设置分钟

    Paste_Image.png

    12.getSeconds() 获取秒数
    13.setSeconds() 设置秒数

    Paste_Image.png

    相关文章

      网友评论

        本文标题:JS 时间对象

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