小陆博客

为站长提供建站技巧、网站运营、搜索优化、建站方向以及利用网站赚钱与创业的知识与经验。

热门搜索:

js格式化成秒

7841 浏览
0 评论
内容
```js formatSeconds = function(value) { var theTime = parseInt(value); var theTime1 = 0; var theTime2 = 0; if (theTime > 60) { theTime1 = parseInt(theTime / 60); theTime = parseInt(theTime % 60); if (theTime1 > 60) { theTime2 = parseInt(theTime1 / 60); theTime1 = parseInt(theTime1 % 60) } } return { 'hour': theTime2 < 10 ? '0' + theTime2 : theTime2, 'min': theTime1 < 10 ? '0' + theTime1 : theTime1, 'sec': theTime < 10 ? '0' + theTime : theTime } }; ```
```js formatSeconds = function(value) { var theTime = parseInt(value); var theTime1 = 0; var theTime2 = 0; if (theTime > 60) { theTime1 = parseInt(theTime / 60); theTime = parseInt(theTime % 60); if (theTime1 > 60) { theTime2 = parseInt(theTime1 / 60); theTime1 = parseInt(theTime1 % 60) } } return { 'hour': theTime2 < 10 ? '0' + theTime2 : theTime2, 'min': theTime1 < 10 ? '0' + theTime1 : theTime1, 'sec': theTime < 10 ? '0' + theTime : theTime } }; ```

评论 (0)

评论功能正在开发中...