赞
踩
用户输入秒数,系统会自动将秒数转变为小时、分钟、秒,并且不满10的要在前面补零
小时:hour = parseInt(总秒数/60/60%24)
分钟:minute = parseInt(总秒数/60%60)
秒数:second = parseInt(总秒数%60)
- let totalSecond = +prompt('请输入总秒数')
- function getTime(total = 0) {
- //函数内没有声明直接使用的变量会变成全局变量
- let h = parseInt(total / 60 / 60 % 24)
- let m = parseInt(total / 60 % 60)
- let s = parseInt(total % 60)
- h = h < 10 ? '0' + h : h
- m = m < 10 ? '0' + m : m
- s = s < 10 ? '0' + s : s
- return (`当前还剩时间${h}小时${m}分${s}秒`)
- }
- let surplus = getTime(totalSecond)
- // document.write(surplus)
- console.log(surplus);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。