赞
踩
1. 获取当前年月日时分秒:
const now = new Date(+new Date() + 8 * 3600 * 1000).toISOString().replace(/T/g, ' ').replace(/\.[\d]{3}Z/,
'');
2. 获取半年前年月日时分秒
const dt = new Date();
dt.setMonth(dt.getMonth() - 6);
const before = new Date(+new Date(dt) + 8 * 3600 * 1000).toISOString().replace(/T/g, ' ').replace(
/\.[\d]{3}Z/, '');
3. 获取明天时间
new Date(new Date().getTime() + (2 * 3600 * 24 * 1000)).toISOString().replace(/T/g, ' ').replace(/\.[\d]{3}Z/,
'')
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。