时间:2021-05-25
全面兼容的javascript时间格式化函数,实用总结!
复制代码 代码如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>js日期格式化</title>
<script language="javascript" type="text/javascript">
/*
* 时间格式化
* strDateTime:需要格式化的字符串时间
* intType:格式化类型
*/
function formatDateTime(strDateTime, intType) {
var years, month, days, hours, minutes, seconds;
var newDate, arrDate = new Array(), arrTime = new Array();
try {
if (strDateTime != undefined && strDateTime != null && strDateTime != "") {
//获取日期和时间数组
if (strDateTime.indexOf("-") != -1) {
var item = strDateTime.split(" ");
arrDate = item[0].toString().split("-");
arrTime = item[1].toString().split(":");
} else if (strDateTime.indexOf("/") != -1) {
var item = strDateTime.split(" ");
arrDate = item[0].toString().split("/");
arrTime = item[1].toString().split(":");
}
//处理数据
if (arrDate != undefined && arrTime != undefined
&& arrDate.length == 3 && arrTime.length == 3) {
newDate = new Date(
parseInt(arrDate[0]),
parseInt(arrDate[1]),
parseInt(arrDate[2]),
parseInt(arrTime[0]),
parseInt(arrTime[1]),
parseInt(arrTime[2])
);
switch (Number(intType)) {
case 1: //格式:yyyy-MM-dd
years = newDate.getFullYear();
month = newDate.getMonth();
if (Number(month) < 10) month = "0" + month;
days = newDate.getDate();
if (Number(days) < 10) days = "0" + days;
newDate = years + "-" + month + "-" + days;
break;
case 2: //格式:MM-dd HH:mm
month = newDate.getMonth();
if (Number(month) < 10) month = "0" + month;
days = newDate.getDate();
if (Number(days) < 10) days = "0" + days;
hours = newDate.getHours();
if (Number(hours) < 10) hours = "0" + hours;
minutes = newDate.getMinutes();
if (Number(minutes) < 10) minutes = "0" + minutes;
newDate = month + "-" + days +
" " + hours + ":" + minutes;
break;
case 3: //格式:HH:mm:ss
hours = newDate.getHours();
if (Number(hours) < 10) hours = "0" + hours;
minutes = newDate.getMinutes();
if (Number(minutes) < 10) minutes = "0" + minutes;
seconds = newDate.getSeconds();
if (Number(seconds) < 10) seconds = "0" + seconds;
newDate = hours + ":" + minutes + ":" + seconds;
break;
case 4: //格式:HH:mm
hours = newDate.getHours();
if (Number(hours) < 10) hours = "0" + hours;
minutes = newDate.getMinutes();
if (Number(minutes) < 10) minutes = "0" + minutes;
newDate = hours + ":" + minutes;
break;
case 5: //格式:yyyy-MM-dd HH:mm
years = newDate.getFullYear();
month = newDate.getMonth();
if (Number(month) < 10) month = "0" + month;
days = newDate.getDate();
if (Number(days) < 10) days = "0" + days;
hours = newDate.getHours();
if (Number(hours) < 10) hours = "0" + hours;
minutes = newDate.getMinutes();
if (Number(minutes) < 10) minutes = "0" + minutes;
newDate = years + "-" + month + "-" + days +
" " + hours + ":" + minutes;
break;
case 6: //格式:yyyy/MM/dd
years = newDate.getFullYear();
month = newDate.getMonth();
if (Number(month) < 10) month = "0" + month;
days = newDate.getDate();
if (Number(days) < 10) days = "0" + days;
newDate = years + "/" + month + "/" + days;
break;
case 7: //格式:MM/dd HH:mm
month = newDate.getMonth();
if (Number(month) < 10) month = "0" + month;
days = newDate.getDate();
if (Number(days) < 10) days = "0" + days;
hours = newDate.getHours();
if (Number(hours) < 10) hours = "0" + hours;
minutes = newDate.getMinutes();
if (Number(minutes) < 10) minutes = "0" + minutes;
newDate = month + "/" + days +
" " + hours + ":" + minutes;
break;
case 8: //格式:yyyy/MM/dd HH:mm
years = newDate.getFullYear();
month = newDate.getMonth();
if (Number(month) < 10) month = "0" + month;
days = newDate.getDate();
if (Number(days) < 10) days = "0" + days;
hours = newDate.getHours();
if (Number(hours) < 10) hours = "0" + hours;
minutes = newDate.getMinutes();
if (Number(minutes) < 10) minutes = "0" + minutes;
newDate = years + "/" + month + "/" + days +
" " + hours + ":" + minutes;
break;
case 9: //格式:yy-MM-dd
years = newDate.getFullYear();
years = years.toString().substr(2, 2);
month = newDate.getMonth();
if (Number(month) < 10) month = "0" + month;
days = newDate.getDate();
if (Number(days) < 10) days = "0" + days;
newDate = years + "-" + month + "-" + days;
break;
case 10: //格式:yy/MM/dd
years = newDate.getFullYear();
years = years.toString().substr(2, 2);
month = newDate.getMonth();
if (Number(month) < 10) month = "0" + month;
days = newDate.getDate();
if (Number(days) < 10) days = "0" + days;
newDate = years + "/" + month + "/" + days;
break;
case 11: //格式:yyyy年MM月dd hh时mm分
years = newDate.getFullYear();
month = newDate.getMonth();
if (Number(month) < 10) month = "0" + month;
days = newDate.getDate();
if (Number(days) < 10) days = "0" + days;
hours = newDate.getHours();
if (Number(hours) < 10) hours = "0" + hours;
minutes = newDate.getMinutes();
if (Number(minutes) < 10) minutes = "0" + minutes;
newDate = years + "年" + month + "月" + days +
" " + hours + "时" + minutes + "分";
break;
}
}
}
} catch (e) {
newDate = new Date();
return newDate.getFullYear() + "-" +
(newDate.getMonth() + 1) + "-" +
newDate.getDate() + " " +
newDate.getHours() + ":" +
newDate.getMinutes() + ":" +
newDate.getSeconds();
}
return newDate;
}
</script>
</head>
<body>
<script language="javascript" type="text/javascript">
//调用
document.writeln(formatDateTime("2014/04/16 22:34:45", 11));
</script>
</body>
</html>
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
复制代码代码如下://和PHP一样的时间戳格式化函数//@param{string}format格式//@param{int}timestamp要格式化的时间默
前端开发中经常会碰到用JavaScript?格式化数字,最最常见的是格式化金额,一般格式化金额需要千分位分隔,保留2位小数等等。简单的功能函数类似的代码
前言Javascript日期格式化在日常开发中还是挺常见的,那么下面就给大家分享Javascript时间格式format函数的两种使用方法示例,一起来看看。方法
JS的时间格式化和时间戳转换函数//格式化时间functiondateFormat(fmt,date){varo={"M+":date.getMonth()+1
Angularjs内置的过滤器(filter)为我们的数据信息格式化提供了比较强大的功能,比如:格式化时间,日期、格式化数字精度、语言本地化、格式化货币等等。但