美文网首页
js时间戳转换具体时间方法封装

js时间戳转换具体时间方法封装

作者: 在下高姓 | 来源:发表于2020-04-28 20:48 被阅读0次
timestampToTime:function(e) {
                    var date = new Date(e*1000) //时间戳为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()<10? '0'+date.getHours() : date.getHours())+':';
                    var m = (date.getMinutes()<10? '0'+date.getMinutes() : date.getMinutes())+':';
                    var s = (date.getSeconds()<10? '0'+date.getSeconds() : date.getSeconds());
                    return Y+M+D+h+m+s//返回时间
                },

相关文章

网友评论

      本文标题:js时间戳转换具体时间方法封装

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