近24小时时间

//近24小时
function getLast24Hours() {
  // 获取当前时间
  const now = new Date();

  // 计算 24 小时前的时间
  const last24Hours = new Date(now.getTime() - 24 * 60 * 60 * 1000);

  // 格式化时间字符串,例如 "2023-09-02 10:00:00"
  const nowStr = now.getFullYear() + '-' + (now.getMonth() + 1).toString().padStart(2, '0') + '-' + now.getDate().toString().padStart(2, '0') + ' ' ;
  const last24HoursStr = last24Hours.getFullYear() + '-' + (last24Hours.getMonth() + 1).toString().padStart(2, '0') + '-' + last24Hours.getDate().toString().padStart(2, '0') + ' ';

  // 返回时间字符串
  return {
    now: nowStr,
    last24Hours: last24HoursStr
  };
}

你可能感兴趣的:(前端,javascript,linux)