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

2020-12-25  本文已影响0人  安徒生1997

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

上一篇 下一篇

猜你喜欢

热点阅读