时间显示1970年
来源:9-7 店铺列表页前端的开发下
慕莱坞445437
2019-11-25
Date.prototype.Format = function(fmt) {
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 ( var k in o)
if (new RegExp("(" + k + “)”).test(fmt))
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k])
: ((“00” + o[k]).substr(("" + o[k]).length)));
return fmt;
}
写回答
1回答
-
翔仔
2019-11-26
同学好,请问是啥问题,辛苦仔细点儿描述,时间显示1970年的话证明是获取不到对应的时间值或者时间值格式不正确?
022019-11-27
相似问题