我是 jQuery 新手,我所有的搜索请求都让我想到了处理日期/时间数据类型的方法。但我需要处理一段时间,以分钟为单位。例如,我想将1708
分钟转换为"1 day and 4 hours"
表达式,忽略分钟。TimeSpan
例如,C# 中有数据类型,我可以执行以下操作:
public string ConvertMinutes()
{
//Number of minutes I have and want to convert
int n = 1708;
TimeSpan t = new TimeSpan(0, n, 0);
string dayshelper = t.Days == 1 ? "day" : "days";
string hoursHelper = t.Hours == 1 ? "hour" : "hours";
//The result I want to get
//For example "4 days and 2 hours"
string result = string.Empty;
result += t.Days == 0 ? string.Empty : string.Format("{0} {1}", t.Days, dayshelper);
result += t.Hours == 0 ? "." : string.Format(" and {0} {1}.", t.Hours, hoursHelper);
return result;
}
jQuery中有类似的东西吗?还是我必须自己从分钟数中获取天数和小时数?