闰年检查
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了闰年检查相关的知识,希望对你有一定的参考价值。
Extend Date object to have isLeapYear() boolean (true for Leap Years)Taken from https://raw.github.com/vitch/jquery-methods/master/date.js
Date.prototype.isLeapYear = function() { var y = this.getFullYear(); return (y%4==0 && y%100!=0) || y%400==0; };
以上是关于闰年检查的主要内容,如果未能解决你的问题,请参考以下文章