1234567891011121314151617181920212223 |
- <!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 data = new Date();
- console.log(data.getFullYear()); //获取年份
- console.log(data.getMonth() + 1); //获取月份 0-11
- console.log(data.getDate()); //获取日期
- console.log(data.getHours()); //获取小时
- console.log(data.getMinutes()); //获取分钟
- console.log(data.getSeconds()); //获取秒数
- console.log(data.getDay()); //获取星期
- console.log(data.getMilliseconds()); //获取毫秒
- console.log(data.getTime()); //获取时间戳
- </script>
- </body>
- </html>
|