js获取今天是一年中的第几天
// 获取今天是一年中的第几天 getDay() { const currentYear = new Date().getFullYear().toString(); // 今天减今年的第一天(xxxx年01月01日) const hasTimestamp = new Date() - new Date(currentYear); // 86400000 = 24 * 60 * 60 * 1000 let hasDays = Math.ceil(hasTimestamp / 86400000);return hasDays; },
本文来自博客园,作者:ALin_Da,转载请注明原文链接:https://www.cnblogs.com/alinda/p/15498617.html
。 一个programmer小菜鸟的成长记