摘要:
//js格式化分钟转为天、时、分 function formatMinutes(minutes) { var day = parseInt(Math.floor(minutes / 1440)); var hour = day > 0 ? Math.floor((minutes - day * 1440) / 60) : Math.floor(minutes /... 阅读全文
posted @ 2018-04-03 13:12
ggband
阅读(2452)
评论(2)
推荐(0)
浙公网安备 33010602011771号