多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
> 日期的常用写法特此介绍 [TOC] ## 初始化 ~~~ new Date(); // 默认当前时间 new Date(value); // 时间戳参数。毫秒,可使用new Date().getTime()获取时间戳 new Date(dateString); // 时间字符串 ~~~ ## 格式化 ~~~ var date = new Date(); console.log(formatDate(date)) // 日期格式化封装 function formatDate(date){ return date.getFullYear()+'-'+(date.getMonth()+1).toString()+"-"+date.getDate()+' '+date.getHours()+":"+date.getMinutes()+":"+date.getSeconds() } ~~~