在所有时区使用 JavaScript 将 Excel 日期序列号转换为日期
Converting Excel Date Serial Number to Date using JavaScript in All timezone
我尝试使用此函数将 excel 日期转换为 javascript 日期,但它只适用于 UTC+ 时区,而不适用于 UTC- timeZone
UTC- timezone 它需要一天前从 excel 日期,如果你改变 25569 到 25568 它的工作只有 UTC- timezone
function ExcelDateToJSDate(serial) {
var utc_days = Math.floor(serial - 25569);
var utc_value = utc_days * 86400;
var date_info = new Date(utc_value * 1000);
var fractional_day = serial - Math.floor(serial) + 0.0000001;
var total_seconds = Math.floor(86400 * fractional_day);
var seconds = total_seconds % 60;
total_seconds -= seconds;
var hours = Math.floor(total_seconds / (60 * 60));
var minutes = Math.floor(total_seconds / 60) % 60;
return new Date(date_info.getFullYear(), date_info.getMonth(), date_info.getDate(), hours, minutes, seconds);
}
使用下面的函数,我们可以将 excel 日期转换为所有时区的 javascript 日期。
ExcelDateToJSDate(serial) {
var hours = Math.floor((serial % 1) * 24);
var minutes = Math.floor((((serial % 1) * 24) - hours) * 60)
return new Date(Date.UTC(0, 0, serial, hours-17, minutes));
}
我尝试使用此函数将 excel 日期转换为 javascript 日期,但它只适用于 UTC+ 时区,而不适用于 UTC- timeZone
UTC- timezone 它需要一天前从 excel 日期,如果你改变 25569 到 25568 它的工作只有 UTC- timezone
function ExcelDateToJSDate(serial) {
var utc_days = Math.floor(serial - 25569);
var utc_value = utc_days * 86400;
var date_info = new Date(utc_value * 1000);
var fractional_day = serial - Math.floor(serial) + 0.0000001;
var total_seconds = Math.floor(86400 * fractional_day);
var seconds = total_seconds % 60;
total_seconds -= seconds;
var hours = Math.floor(total_seconds / (60 * 60));
var minutes = Math.floor(total_seconds / 60) % 60;
return new Date(date_info.getFullYear(), date_info.getMonth(), date_info.getDate(), hours, minutes, seconds);
}
使用下面的函数,我们可以将 excel 日期转换为所有时区的 javascript 日期。
ExcelDateToJSDate(serial) {
var hours = Math.floor((serial % 1) * 24);
var minutes = Math.floor((((serial % 1) * 24) - hours) * 60)
return new Date(Date.UTC(0, 0, serial, hours-17, minutes));
}