js 格式化时间

杀马特。学长 韩版系。学妹 提交于 2019-12-05 00:14:44

第一种:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat

var date = new Date(Date.UTC(2012, 11, 20, 3, 0, 0));
// Results below assume UTC timezone - your results may vary

console.log(new Intl.DateTimeFormat('en-US').format(date));
// expected output: "12/20/2012"

console.log(new Intl.DateTimeFormat('en-GB').format(date));
// expected output: "20/12/2012"

// Include a fallback language, in this case Indonesian
console.log(new Intl.DateTimeFormat(['ban', 'id']).format(date));
// expected output: "20/12/2012"

var date = new Date();
if(date){
// var time = date.format("yyyy-MM-dd HH:mm:ss");
options = {
year: 'numeric', month: 'numeric', day: 'numeric',
hour: 'numeric', minute: 'numeric', second: 'numeric',
hour12: false,
// timeZone: 'America/Los_Angeles'
};
var time = new Intl.DateTimeFormat('zh-Hans-CN',options).format(date);

// expected output: "2019/11/19 16:52:28"

 

第二种:

var retVal = [];
debugger;
var dt1;
var dt2;
var start_date = document.getElementsByName("start_date")[0].getElementsByTagName("input")[0].value;
var end_date = document.getElementsByName("end_date")[0].getElementsByTagName("input")[0].value;
var tempDt;
var fmt = "yyyy-MM";

if(start_date==""&&end_date==""){
dt1 = new Date();
tempDt = new Date();
dt2 = new Date(tempDt.setMonth(tempDt.getMonth()+11));

}else{
dt1 = new Date(start_date);
dt2 = new Date(end_date);
tempDt = new Date(start_date);
//无效的时间
if(dt1=="Invalid Date"||dt2=="Invalid Date"){
top.aras.AlertError("日期输入不正确,请重新输入时间区间!");
return false;
}
//时间区间大于12个月
if(Format(new Date(tempDt.setMonth(tempDt.getMonth()+11)),fmt)<Format(dt2,fmt)){
top.aras.AlertError("日期选择不正确,时间区间不能超过12个月。请重新选择查询时间段!");
return false;
}
//开始时间等于或者小于结束日期

if(Format(dt1,fmt)>= Format(dt2,fmt)){
top.aras.AlertError("日期选择不正确,时间区间要大于0个月。请重新选择查询时间段!");
return false;
}
}


retVal["start_date"] = Format(dt1,fmt);
retVal["end_date"] = Format(dt2,fmt);
parent.returnValue=retVal;
parent.frameElement.dialogArguments.dialog.close();

//格式化日期 yyyy-MM
function Format(time,fmt){
var o = {
"M+": time.getMonth() + 1, //月份
"d+": time.getDate(), //日
"h+": time.getHours(), //小时
"m+": time.getMinutes(), //分
"s+": time.getSeconds(), //秒
"q+": Math.floor((time.getMonth() + 3) / 3), //季度
"S": time.getMilliseconds() //毫秒
};
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (time.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;
}
// 对Date的扩展,将 Date 转化为指定格式的String
// 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符,
// 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字)
// 例子:
// (new Date()).Format("yyyy-MM-dd hh:mm:ss.S") ==> 2006-07-02 08:09:04.423
// (new Date()).Format("yyyy-M-d h:m:s.S") ==> 2006-7-2 8:9:4.18
// Date.prototype.Format = function (fmt) { //author: meizz
// 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;
// }

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!