//工具方法,为Date添加获取季度
Date.prototype.getQuarter = function() {
var month = this.getMonth();
if(month < 3){
return '1';
}else if(month < 6){
return '2';
}else if(month < 9){
return '3';
}else if(month < 12){
return '4';
}
};
//工具方法,为Date添加获取季度
Date.prototype.getQuarter = function() {
var month = this.getMonth();
if(month < 3){
return '1';
}else if(month < 6){
return '2';
}else if(month < 9){
return '3';
}else if(month < 12){
return '4';
}
};