小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我想求当前时间 一个星期后的年月日
//当前时间
function getYMDTime(date) {
var year = date.getFullYear()
var month = date.getMonth() + 1
var day = date.getDate()
return year + "-" + month + "-" + day
}
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
var timestamp = Date.parse(new Date());
console.log(timestamp);
var nextweek = timestamp + 24 * 60 * 60 * 7*1000;
console.log(nextweek);
var date = new Date(nextweek);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
var Y = date.getFullYear() + '-';
var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
var D = date.getDate() + ' ';
var h = date.getHours() + ':';
var m = date.getMinutes() + ':';
var s = date.getSeconds();
var res = Y + M + D + h + m + s;
console.log(res);
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
好的好的,谢谢大佬
小事一桩,不必言谢
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
var timestamp = Date.parse(new Date());
console.log(timestamp);
var nextweek = timestamp + 24 * 60 * 60 * 7*1000;
console.log(nextweek);
var date = new Date(nextweek);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
var Y = date.getFullYear() + '-';
var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
var D = date.getDate() + ' ';
var h = date.getHours() + ':';
var m = date.getMinutes() + ':';
var s = date.getSeconds();
var res = Y + M + D + h + m + s;
console.log(res);
好的好的,谢谢大佬
小事一桩,不必言谢