最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

全面兼容的javascript時間格式化函數(shù)(比較實用)

 更新時間:2014年05月14日 09:28:14   作者:  
這篇文章主要介紹了全面兼容比較實用的javascript時間格式化函數(shù),需要的朋友可以參考下
全面兼容的javascript時間格式化函數(shù),實用總結!
復制代碼 代碼如下:

<!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 != "") {
//獲取日期和時間數(shù)組
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(":");
}


//處理數(shù)據(jù)
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">
//調(diào)用
document.writeln(formatDateTime("2014/04/16 22:34:45", 11));
</script>
</body>
</html>

相關文章

最新評論

河间市| 西畴县| 应用必备| 定襄县| 玉龙| 普定县| 漳浦县| 泉州市| 临桂县| 敖汉旗| 伊春市| 芜湖市| 云和县| 宜黄县| 石门县| 甘谷县| 邢台县| 大名县| 苗栗市| 溧阳市| 五河县| 阿拉善右旗| 积石山| 冀州市| 黔西县| 贵州省| 台山市| 合肥市| 连南| 且末县| 万源市| 鄢陵县| 乌兰浩特市| 抚顺市| 凤翔县| 丰县| 桃园市| 沐川县| 肃宁县| 荣成市| 甘肃省|