当前位置:   article > 正文

微信小程序-获得当前时和当前时间截_微信小程序 getcurrentdate

微信小程序 getcurrentdate

//获取当前时间
var timestamp_now_s = Date.parse(new Date());
var timestamp = timestamp_now_s / 1000;//除1000得到秒的时间截

var date = new Date(timestamp_now_s); //new Date()
//年
var Y = date.getFullYear();
//月
var M = (date.getMonth() + 1 < 10 ? ‘0’ + (date.getMonth() + 1) : date.getMonth() + 1);
//日
var D = date.getDate() < 10 ? ‘0’ + date.getDate() : date.getDate();
//时
var h = date.getHours();
//分
var m = date.getMinutes();
//秒
var s = date.getSeconds();
var now_time = Y+“-”+M+“-”+D+" “+h+”:“+m+”:"+s
//console.log(“当前时间:” +now_time);

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/651109
推荐阅读
相关标签
  

闽ICP备14008679号