摘要: js根据年月获取当月最后一天,或者根据年月获取最大的天数,其代码如下: const input = "2020-06" const arr = input.split('-') const maxDay = new Date(arr[0], arr[1], 0).getDate() // 获取当月最 阅读全文
posted @ 2022-06-09 16:03 itmacy 阅读(893) 评论(0) 推荐(0) 编辑