javascript 时间格式方法
//时间格式设置 Date.prototype.format = function(format) { var o = { "M+" : this.getMonth()+1, //month "d+" : this.getDate(), //day "h+" : this.getHours(), //hour "m+" : this.getMinutes(), //minute "s+" : this.getSeconds(), //second "q+" :
//时间格式设置
Date.prototype.format = function(format) {
var o = {
"M+" : this.getMonth()+1, //month
"d+" : this.getDate(), //day
"h+" : this.getHours(), //hour
"m+" : this.getMinutes(), //minute
"s+" : this.getSeconds(), //second
"q+" : Math.floor((this.getMonth()+3)/3), //quarter
"S" : this.getMilliseconds() //millisecond
};
if(/(y+)/.test(format)) {
format = format.replace(RegExp.$1,
(this.getFullYear() + "").substr(4 - RegExp.$1.length));
}
for(var k in o) {
if(new RegExp("("+ k +")").test(format))
format = format.replace(RegExp.$1,
RegExp.$1.length==1 ? o[k] : ("00"+ o[k]).substr((""+ o[k]).length));
}
return format;
}
//用法
var d = new Date();
d.format("h");
//判断时间
function convertdate(strdate) {
strdate = strdate.replace(/-/ig,'/');
var d = new Date(strdate);
var now = new Date();
var result;
if (d.getYear() == now.getYear() && d.getMonth() == now.getMonth()) {
var xday = now.getDate() - d.getDate();
switch (xday) {
case 0:
result = "今天 " + d.format("hh") + ":" + d.format("mm") + ":" + d.format("ss");
break;
case 1:
result = "昨天 " + d.format("hh") + ":" + d.format("mm") + ":" + d.format("ss");
break;
case 2:
result = "前天 " + d.format("hh") + ":" + d.format("mm") + ":" + d.format("ss");
break;
default:
result = d.format("yyyy-MM-dd hh:mm");
break;
}
} else {
result = d.format("yyyy-MM-dd hh:mm");
}
return result;
}
推荐阅读
-
Java日期时间API系列12-----Jdk8中java.time包中的新的日期时间API类,日期格式化,常用日期格式大全
-
使用JavaScript实现node.js中的path.join方法
-
php从数据库读取数据,并以json格式返回数据的方法
-
JavaScript 批量创建数组的方法
-
u盘怎么强制格式化?强制格式化U盘工具及方法图解
-
如何将磁盘从FAT格式转换为NTFS格式的方法步骤
-
BMP是什么格式 怎么把BMP转成JPG格式的方法
-
JS获取url参数,JS发送json格式的POST请求方法
-
JavaScript开发toggle()隐藏问题的解决方法
-
编辑Word文档时格式混乱出错等排版问题的解决方法