Một hàm JavaScript dựng sẵn dùng để chuyển đồi kiểu giờ HH:MM(AM|PM) thành kiểu 24 giờ, ví dụ 10:10 PM → 22:10. |
JavaScript Function: Convert HH:MM(AM|PM) to 24 hours:
function convertTo24Hour(strtime) {
var time = strtime.toLowerCase()
var hours = parseInt(time.substr(0, 2));
if(time.indexOf('am') != -1 && hours == 12) {
time = time.replace('12', '0');
}
if(time.indexOf('pm') != -1 && hours < 12) {
time = time.replace(hours, (hours + 12));
}
return time.replace(/(am|pm)/, '');
}
Example And Demo:
No comments:
Post a Comment