如何将
JavaScript的新Date()中的本地时间格式隔离并转换为24小时格式?
示例:2016-09-22T23:21:56.027Z刚刚在当地时间22:56.
解决方法
new Date("2000-01-01 10:30 AM").getHours() // 10
这是24小时:
new Date("2000-01-01 10:30 PM").getHours() // 22
如果你想要一个更一般的事情:
function get_hours(time_string) { return new Date("2000-01-01 " + time_string).getHours() // 22 }