zoukankan      html  css  js  c++  java
  • javaScript的日期对象

    日期对象的创建

    作用:Date对象用于处理日期和时间

    创建Date对象的语法:

    var myDate=new Date()
    

    注:Date对象会自动把当前日期和时间保存为其初始值

    日期对象的方法

    方法名 作用
    getFullYear() 从 Date 对象以四位数字返回年份。
    getMonth() 从 Date 对象返回月份 (0 ~ 11)。
    getDate() 从 Date 对象返回一个月中的某一天 (1 ~ 31)。
    getDay() 从 Date 对象返回一周中的某一天 (0 ~ 6)。其中:0表示周日,1~6周一到周六
    getHours() 返回 Date 对象的小时 (0 ~ 23)。
    getMinutes() 返回 Date 对象的分钟 (0 ~ 59)。
    getSeconds() 返回 Date 对象的秒数 (0 ~ 59)。
    getMilliseconds() 返回 Date 对象的毫秒(0 ~ 999)。
    getTime() 返回 1970 年 1 月 1 日至今的毫秒数。类似于Java中的System.currentTimeMillis()
    toLocaleString() 根据本地时间格式,把 Date 对象转换为字符串。

    案例:输出现在的时间

    需求:在浏览器上输出现在的时间

    效果:

    代码:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>当前时间</title>
    </head>
    <body>
    <script>
        document.write("现在的时间是:" + new Date() + "<hr/>");
        document.write("现在的时间是:" + new Date().toLocaleString() + "<hr/>");
    </script>
    </body>
    </html>
    
  • 相关阅读:
    ●BZOJ 2752 [HAOI2012]高速公路(road)
    ●UVA 11021 tunnello
    ●POJ 2794 Double Patience
    【51Nod1555】布丁怪
    【LG1600】[NOIP2016]天天爱跑步
    【LG5171】Earthquake
    【LG4437】[HNOI/AHOI2018]排列
    【CF1097F】Alex and a TV Show
    【51Nod 1769】Clarke and math2
    【LG5330】[SNOI2019]数论
  • 原文地址:https://www.cnblogs.com/guoyx/p/12910441.html
Copyright © 2011-2022 走看看