获取当前时间年月日时分秒 格式:20001212120000
作者:chrispy
const d = new Date()const myYear = d.getFullYear()const myMonth = d.getMonth() + 1 < 10 ? '0' + (d.getMonth() + 1) : d.getMonth() + 1const myDate = d.getDate() < 10 ? '0' + d.getDate() : d.getDate()const myHours = d.ge
const d = new Date()
const myYear = d.getFullYear()
const myMonth = d.getMonth() + 1 < 10 ? '0' + (d.getMonth() + 1) : d.getMonth() + 1
const myDate = d.getDate() < 10 ? '0' + d.getDate() : d.getDate()
const myHours = d.getHours()
const myMinutes = d.getMinutes()
const mySeconds = d.getSeconds()
const _time = '' + myYear + myMonth + myDate + myHours + myMinutes + mySeconds
猜你喜欢
您可能感兴趣的文章:
- PHP的foreach循环
- PHP的运行原理 内幕:PHP是如何显示“你好世界”的?
- php工程师面试题
- php工程师面试题2
- PHP面试题,PHP程序员面试题及答案
- php数组分页
- php四舍五入函数round()
- PHP中$_SERVER的详细参数与说明
- PHP中mysql_connect与mysql_pconnect的区别
- php中print_r、var_dump和var_export
- PHP中strtr和str_replace比较
- Elasticsearch 中文或字符串不支持精准搜索
- mysql 替换replace
- vue 渐隐效果
- axios 拦截器
- 安装 vant
- 数组去重
- 对比两个数组,找出不同的值,返回新的数组
- nodejs配置本地转发