- 博客(1)
- 收藏
- 关注
原创 JS将毫秒数转换为hh:mm:ss/mm:ss格式
如题: /** * 将毫秒数转为hh:mm:ss或mm:ss格式 * 如果毫秒数超过60分钟,则以hh:mm:ss格式显示,反之以mm:ss格式显示 * @param ms 毫秒数 * @returns {string} */ timeFormat(ms) { let h = Math.floor(ms / 1000 / 60 / 60) let m = Math.floor(ms / 1000 / 60) let s = Math.floor(ms
2020-09-20 01:55:26
1559
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅