JS获取月的第几周和年的第几周实例代码
程序员文章站
2022-09-04 15:10:30
下面一段代码给大家介绍js获取月的第几周和年的第几周,具体代码如下所述:
var getmonthweek = function (a, b, c) {...
下面一段代码给大家介绍js获取月的第几周和年的第几周,具体代码如下所述:
var getmonthweek = function (a, b, c) { /* a = d = 当前日期 b = 6 - w = 当前周的还有几天过完(不算今天) a + b 的和在除以7 就是当天是当前月份的第几周 */ var date = new date(a, parseint(b) - 1, c), w = date.getday(), d = date.getdate(); return math.ceil( (d + 6 - w) / 7 ); }; var getyearweek = function (a, b, c) { /* date1是当前日期 date2是当年第一天 d是当前日期是今年第多少天 用d + 当前年的第一天的周差距的和在除以7就是本年第几周 */ var date1 = new date(a, parseint(b) - 1, c), date2 = new date(a, 0, 1), d = math.round((date1.valueof() - date2.valueof()) / 86400000); return math.ceil( (d + ((date2.getday() + 1) - 1)) / 7 ); }; //获取时间的代码就不写了 console.log(getmonthweek(2019,1,1));//返回1
补充:js 获取每月有几周,当前时间在当月第几周,今天周几等方法
因产品需要展示相关时间,现总结如下方法:以供日后参考:
获取每月有几周
// year:年 month:月 day:日 getweeks(year, month, day) { const d = new date() // 该月第一天 d.setfullyear(2018, 6, 1) let w1 = d.getday() if (w1 === 0) { w1 = 7 } // 该月天数 d.setfullyear(2018, 7, 0) const dd = d.getdate() // 该月第一个周一 let d1 if (w1 !== 1) { d1 = 7 - w1 + 2 } else { d1 = 1 } const week_nub = math.ceil((dd - d1 + 1) / 7) return week_nub }
获得周期名字
getweekname() { const weekday = ['周日', '周一', '周二', '周三', '周四', '周五', '周六'] const index = new date().getday() const currday = weekday[index] return currday }
获得当前日期在当月第几周
// a: 年 b: 月 c: 日 (不包括跟上个月重合的部分) getmonthweek(a, b, c) { const date = new date(a, parseint(b) - 1, c) const w = date.getday() const d = date.getdate() return math.ceil( (d + 6 - w) / 7 ) }
总结
以上所述是小编给大家介绍的js获取月的第几周和年的第几周实例代码 ,希望对大家有所帮助
下一篇: JS实现简单的点赞与踩功能示例