真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

javascript時(shí)間綴轉(zhuǎn)時(shí)間字符串

  1. 代碼:
    /*
    @desc:時(shí)間綴轉(zhuǎn)時(shí)間字符串
    @param time 時(shí)間綴,長度為10
    @return 時(shí)間字符串 格式為:2018-06-10 22:00:00
    */
    function timetostr(time){
    this.time = time
    /*
     @desc:內(nèi)部方法,若數(shù)字小于10補(bǔ)0
     @param input 傳入數(shù)值
     @return ret 格式化后的數(shù)值
     */
    this.parsetime = function(input){
        var ret
        if(input >= 0 && input < 10){
            ret = '0'+input
        }else{
            ret = input
        }
        return ret
    }
    /*
     @desc:主方法,獲取轉(zhuǎn)換后的時(shí)間
     @return ret 時(shí)間字符串,格式為:2018-06-10 22:00:00
     */
    this.get = function(){
        var time = (this.time)?(this.time):(Math.round(new Date().getTime()/1000))
        var date = new Date(time*1000)
        var year = this.parsetime(date.getFullYear())
        var month = this.parsetime(date.getMonth())
        var day = this.parsetime(date.getDate())
        var hour = this.parsetime(date.getHours())
        var minute = this.parsetime(date.getMinutes())
        var second = this.parsetime(date.getSeconds())
        var ret = year+'-'+month+'-'+day+' '+hour+':'+minute+':'+second
        return ret
    }
    }
  2. 測試:
    var timetostr = new timetostr(1528593779)
    var ret = timetostr.get()
    console.log(ret)
  3. 輸出:
    2018-05-10 09:22:59

本文名稱:javascript時(shí)間綴轉(zhuǎn)時(shí)間字符串
網(wǎng)頁鏈接:http://weahome.cn/article/ihoddd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部