問題:決定兩個提供的日期時間之間的時差字串。
範例:
var now = "04/09/2013 15:00:00"; var then = "04/09/2013 14:20:30"; // Expected output: "00:39:30"
解:
持續時間小於24小時:
moment.utc(moment(now, "DD/MM/YYYY HH:mm:ss").diff(moment(then, "DD/MM/YYYY HH:mm:ss"))).format("HH:mm:ss")
持續時間為 24 小時或更長:
var ms = moment(now, "DD/MM/YYYY HH:mm:ss").diff(moment(then, "DD/MM/YYYY HH:mm:ss")); var d = moment.duration(ms); var s = Math.floor(d.asHours()) + moment.utc(ms).format(":mm:ss");
使用Moment.js外掛:
時刻-持續時間-格式
var s = d.format("hh:mm:ss");
以上是如何計算兩個日期時間字串之間的時間差?的詳細內容。更多資訊請關注PHP中文網其他相關文章!