美文网首页
微信小程序 获取时间转时间戳

微信小程序 获取时间转时间戳

作者: 安徒生1997 | 来源:发表于2020-12-25 10:27 被阅读0次

1.获取时间

today_time: function(t) {

        var e = new Date(), a = e.getMonth() + 1, o = e.getDate();

        return 1 <= a && a <= 9 && (a = "0" + a), 0 <= o && o <= 9 && (o = "0" + o), e.getFullYear() + "-" + a + "-" + o + " " + e.getHours() + ":" + e.getMinutes() + ":" + e.getSeconds();

},

2.13位时间戳

let that=this;

let t = that.today_time()

let repTime = t.replace(/-/g, '/');

let timeTamp = Date.parse(repTime);

3.10位时间戳

let that=this;

let t = that.today_time()

let repTime = t.replace(/-/g, '/');

let timeTamp = Date.parse(repTime);

let date = timeTamp /1000

相关文章

网友评论

      本文标题:微信小程序 获取时间转时间戳

      本文链接:https://www.haomeiwen.com/subject/fyebnktx.html