阅读背景:

js获取今天时间 (coffee语句)

来源:互联网 

coffee获取今天00:00:00到23:59:59 今天全天时间

getNowFormatDate = ->
        date = new Date()
        seperator1 = "-"
        seperator2 = ":"
        month = date.getMonth() + 1
        strDate = date.getDate()
        if month >= 1 && month <= 9
            month = "0" + month

        if strDate >= 0 && strDate <= 9
            strDate = "0" + strDate;

        currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate
        + " " + date.getHours() + seperator2 + date.getMinutes()+ seperator2 + date.getSeconds()
        return currentdate;


    self.table.query.startTime = getNowFormatDate()+" "+"00:00:00"
    self.table.query.endTime = getNowFormatDate()+" "+"23:59:59"getNowF



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: