js 得到当前季度

 Date.prototype.getQuarter = function() {
var month = this.getMonth();
if(month < 3) {
return '第一季度';
}else if(month < 6) {
return '第二季度';
}else if(month <9) {
return '第三季度';
}else if(month <12) {
return '第四季度';
}
};

调用方式:

new Date().getQuarter();

上一篇:yaf设置命名空间


下一篇:无限循环的ViewPager