js 수령 인원 연령 (x 세 x 월 x 일)

1180 단어
//     ,  X X X 
	//     1.    ,2.    
	function calAge(birthday){
		var   strDate1   =   birthday + "   00:00:00.0";
		var   strDate2   =   new Date().format('Y-m-d') + "   00:00:00.0";
		strDate1=strDate1.substring(0,strDate1.lastIndexOf(".")).replace(/-/g, "/ ");
		strDate2=strDate2.substring(0,strDate2.lastIndexOf(".")).replace(/-/g, "/ ");
		//      -   /                   
		var   date1   =  Date.parse(strDate1);
		var   date2   =  Date.parse(strDate2);
		var day = Math.ceil((date2-date1)/(60*60*1000*24));
		var age = '';	//     
		var year = Math.floor(day/365);
		var y = day%365;
		var month = Math.floor(y/30);
		var d = Math.floor(day%365%30);
		if(year > 0){
			age += year + ' ';
		}
		if(month > 0){
			age += month + ' ';
		}
		if(d>0){
			age += d+' ';
		}

		return age;
	}

 주: 현재 매달 고정 30 일 로 계산 하여 후속 가입 을 최적화 합 니 다.
 
Math.ceil();// 진수
Math.round();// 반올림
Math.floor(); // 퇴위

좋은 웹페이지 즐겨찾기