js获取本月或指定月份的最后一天
Posted 迷茫于红尘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取本月或指定月份的最后一天相关的知识,希望对你有一定的参考价值。
自定义方法,用于获取本月或指定月份的最后一天,如果不传参数,就是当前月:
function getMonthFinalDay(year,month){ var day=‘‘; if(year==null || year==undefined || year==‘‘){ year = new Date().getFullYear(); } if(month==null || month==undefined || month==‘‘){ month = new Date().getMonth()+1; } day = new Date(new Date(year,month).setDate(0)).getDate(); return year+"-"+month+"-"+day; }
调用方式:
getMonthFinalDay();//2017-10-31 getMonthFinalDay(2016);//2016-10-31 getMonthFinalDay(2017,9);//2017-9-30
以上是关于js获取本月或指定月份的最后一天的主要内容,如果未能解决你的问题,请参考以下文章