12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <script>
- var date = new Date();
- console.log(date.getDate()); //getDate 日期
- console.log(date.getDay()); //getDay 星期
-
- console.log(date.getFullYear()); //getFullYear 年
- console.log(date.getMonth() + 1); //getMonth 月 0-11
- console.log(date.getHours()); //getHours 小时
- console.log(date.getMinutes()); //getMinutes 分钟
- console.log(date.getSeconds()); //getSeconds 秒
- console.log(date.getTime()); //getTime 当前时间时间戳
- console.log(date.getMilliseconds()) //getMilliseconds 当前毫秒
-
- </script>
- </body>
- </html>
|