https://blog.csdn.net/qq_30351747/article/details/120482956
作者:互联网
微信小程序 获取当前日期时间最简版本
// 当前日期 YYYY-MM-DD console.log(new Date().toISOString().substring(0, 10)); console.log(new Date().toJSON().substring(0, 10)); // 当前日期 YYYY/MM/DD console.log(new Date().toLocaleDateString()); // 当前时间 hh:mm:ss console.log(new Date().toTimeString().substring(0,8)); // 当前日期时间 YYYY-MM-DD hh:mm:ss console.log(new Date().toJSON().substring(0, 10) + ' ' + new Date().toTimeString().substring(0,8));
以上代码运行如下图
标签:qq,substring,120482956,log,DD,console,blog,Date,new 来源: https://www.cnblogs.com/yibinboy/p/16458937.html