本文介绍了Javascript格式日期/时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要将日期/时间从 2014-08-20 15:30:00 更改为 08/20/2014 3:30 pm
I need to change a date/time from 2014-08-20 15:30:00 to look like 08/20/2014 3:30 pm
可以使用javascript的Date对象来完成吗?
Can this be done using javascript's Date object?
推荐答案
是的,你可以使用本机javascript Date() 对象及其方法。
Yes, you can use the native javascript Date() object and its methods.
例如,您可以创建一个类似:
For instance you can create a function like:
function formatDate(date) {
var hours = date.getHours();
var minutes = date.getMinutes();
var ampm = hours >= 12 ? 'pm' : 'am';
hours = hours % 12;
hours = hours ? hours : 12; // the hour '0' should be '12'
minutes = minutes < 10 ? '0'+minutes : minutes;
var strTime = hours + ':' + minutes + ' ' + ampm;
return date.getMonth()+1 + "/" + date.getDate() + "/" + date.getFullYear() + " " + strTime;
}
var d = new Date();
var e = formatDate(d);
alert(e);
同时显示am / pm和正确的时间。
And display also the am / pm and the correct time.
请记住使用 getFullYear()方法,而不是getYear(),因为已被弃用。
Remember to use getFullYear() method and not getYear() because it has been deprecated.
演示
这篇关于Javascript格式日期/时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!