用javascript根据当前年月获得当前季度

用javascript根据当前年月获得当前季度

function getMonth(){
    var today = new Date(); //获取当前时间
    var month = today.getMonth() + 1;//getMonth返回0-11
    if(month >=1 && month <=3){
    	return “第一季度”;
    }else if(month >=4 && month <=6){
        return “第二季度”;
    }else if(month >=7 && month <=9){
        return “第三季度”;
    }else{
        return  “第四季度”;
    }    
}

你可能感兴趣的:(js基础,前端,es6,vue.js,elementui,前端框架)