在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
研究 1、时间格式化常规思路正常思路是通过Date的实例依次获取年月日等,例如一个简单的格式化例子: Date.prototype.format = function(dateStr) { let date = new Date(); let year = date.getFullYear(); let month = date.getMonth() + 1; let day = date.getDate().toString().padStart(2, "0"); let hour = date.getHours(); let minute = date.getMinutes(); let second = date.getSeconds(); dateStr = dateStr.replace("年", year) .replace("月", month) .replace("日", day) .replace("小时", hour) .replace("分钟", minute) .replace("秒", second); return dateStr; }; // 使用上面的方法 console.log(new Date().format("年-月-日")); // 2021-11-04 2、时间格式化toLocaleString()
// 日期,输出当前时间 let date = new Date(); // 这个是格林威治时间格式 console.log(date.toString()); // Thu Nov 04 2021 10:11:35 GMT+0800 (中国标准时间) // 这个是本地时间格式 console.log(date.toLocaleString()); // 2021/11/4 上午10:18:08 新版本浏览器可以支持 locales 和 options 参数: let date = new Date(); // 24小时制 let options = { year: 'numeric', month: 'numeric', day: 'numeric', hour: 'numeric', minute: 'numeric', second: 'numeric', hour12: false }; console.log(date.toLocaleString("zh-CN", options)); // 2021/11/4 10:33:01 获取星期几: let date = new Date(); let options = { weekday: "long" }; console.log(date.toLocaleString("zh-CN", options)); // 星期四
到此这篇关于 |
请发表评论