js获取当前年月日 时分秒的方法(new Date()/moment.js)
在JavaScript中,您可以使用Date
对象来获取当前的年月日时分秒。以下是使用原生JavaScript获取这些信息的方法:
const now = new Date();
const year = now.getFullYear(); // 年份
const month = now.getMonth() + 1; // 月份,+1因为getMonth()返回0-11
const day = now.getDate(); // 日期
const hours = now.getHours(); // 小时
const minutes = now.getMinutes(); // 分钟
const seconds = now.getSeconds(); // 秒钟
console.log(year, month, day, hours, minutes, seconds);
如果您使用moment.js库,可以这样做:
const moment = require('moment'); // 需要先安装moment.js
const year = moment().year(); // 年份
const month = moment().month() + 1; // 月份
const day = moment().date(); // 日期
const hours = moment().hours(); // 小时
const minutes = moment().minutes(); // 分钟
const seconds = moment().seconds(); // 秒钟
console.log(year, month, day, hours, minutes, seconds);
请确保已经安装了moment.js库,可以通过npm安装:
npm install moment
评论已关闭