时间戳转化为正常时间函数


shijianc(){
              var date = new Date(1512535620)
              // console.log(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() < 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

            }
    


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM