Js处理13位时间戳

来源:互联网 发布:数据迁移解决方案 编辑:程序博客网 时间:2024/06/02 06:26


Date.prototype.Format = function (fmt) { //author: meizz

            var o = {

                "M+": this.getMonth() + 1,//月份

                "d+": this.getDate(),//

                "H+": this.getHours(),//小时

                "m+": this.getMinutes(),//

                "s+": this.getSeconds(),//

                "q+": Math.floor((this.getMonth() + 3) / 3),//季度

                "S": this.getMilliseconds()//毫秒

            };

            if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() +"").substr(4 - RegExp.$1.length));

            for (vark in o)

            if (newRegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));

            return fmt;

        }

       

       function cuoToFormat(data){

          var dateTimeJsonStr = '\/Date('+data+')\/';// C# DateTime类型转换的Json格式

        //dateTimeJsonStr = Date.now();

        var msecStr = dateTimeJsonStr.toString().replace(/\/Date\(([-]?\d+)\)\//gi,"$1"); // => '1419492640000' :通过正则替换,获取毫秒字符串

        var msesInt = Number.parseInt(msecStr);// 毫秒字符串转换成数值

        var dt = new Date(msesInt); // 初始化Date对象

 

        var ndt = dt.Format("yyyy-MM-dd HH:mm:ss");

        return ndt;

       

       }

0 0
原创粉丝点击