码迷,mamicode.com
首页 > 其他好文 > 详细

getUTCHours

时间:2014-11-19 18:01:32      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   for   on   div   

getUTCMinutes() 方法可根据世界时 (UTC) 返回时间的分钟字段。

    function timeFormat(ms){
        if (!ms) return 0;
        var date = new Date(ms),
            h = date.getUTCHours(),
            m = date.getUTCMinutes(),
            s = date.getUTCSeconds(),
            timeStr = ‘‘;

        if (h) timeStr += h +小时;
        timeStr += m + + s + ;
        return timeStr;
    }
timeFormat(毫秒数);

 

getUTCHours

标签:style   blog   io   ar   color   sp   for   on   div   

原文地址:http://www.cnblogs.com/jiangtuzi/p/4108734.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!