javscript获取当前时间的时候,有时候需要把123456789,改成010203040506070809,下面web建站小编给大家介绍一下实现代码!
补0代码如下:
var now = new Date(); var day = now.getDate() < 10 ? '0' + now.getDate() : now.getDate() var date = (now.getMonth()+1) < 10 ? '0' + (now.getMonth()+1) : (now.getMonth()+1) + '-' + day; console.log(date)
上面是“javscript对月和日的时间补0”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_2610.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!