我有这个

$.each(data, function (id, item) {
                    var tempDate = new Date();
                    var tempTime = item.Time;
                    debugger;
                    tempDate =new Date(parseInt(item.Date.replace("/Date(", "").replace(")/", ""), 10));
                    self.items.push({ Name: item.Name, Date: (tempDate.getMonth() + 1) + '/' + tempDate .getDate() + '/' + tempDate.getFullYear(), Time: tempTime });
                });

主要问题是如何从tempTime中获取时间,它具有Object类型,而getHours函数不起作用。
javascript - JavaScript中带有时间的对象-LMLPHP

最佳答案

如果只想从tempTime中获取小时数,那么您要做的就是访问Hours属性的值,如下所示:

tempTime.Hours // => 11

08-18 03:38