AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
> 日期的常用写法特此介绍 [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() } ~~~