js 输出某年某月某日的天数/判断闰年
Posted 青青子衿。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 输出某年某月某日的天数/判断闰年相关的知识,希望对你有一定的参考价值。
console.log(getDays(2017,12,12)); function getDays(year,month,day){ var arr = [31,28,31,30,31,30,31,31,30,31,30,31]; for(var i=0;i<month-1;i++){ day += arr[i]; } if(month>2 && isRN(year)){ day+=1; } return day; } function isRN(year){ if(year%4===0 && year%100!==0 || year%400===0){ return true; } return false; }
以上是关于js 输出某年某月某日的天数/判断闰年的主要内容,如果未能解决你的问题,请参考以下文章