首页 > 代码库 > 关于js序列化时间的方法
关于js序列化时间的方法
var time = new Date();
var otime = getMyDate(time);
//将毫秒转换成 年月日+时分秒 格式的 (1970-01-11 00:00:00)
function getMyDate(str) {
var oDate = new Date(str),
oYear = oDate.getFullYear(),
oMonth = oDate.getMonth() + 1,
oDay = oDate.getDate(),
oHour = oDate.getHours(),
oMin = oDate.getMinutes(),
oSen = oDate.getSeconds(),
oTime = oYear + ‘-‘ + getzf(oMonth) + ‘-‘ + getzf(oDay) + ‘ ‘ + getzf(oHour) + ‘:‘ + getzf(oMin) + ‘:‘ + getzf(oSen); //最后拼接时间
return oTime;
};
//补0操作
function getzf(num) {
if(parseInt(num) < 10) {
num = ‘0‘ + num;
}
return num;
}
关于js序列化时间的方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。