jsp中时间日期算法集合

来源:互联网 发布:海康域名注册平台 编辑:程序博客网 时间:2024/06/01 23:23

1.           计算 年龄相差18岁(如:1999-09-09   2006-01-01)

                if(Math.abs((new Date(getBirthday(code)) - new   Date(holderYear))/(1000*60*60*24*365)) < 18){
showMsg("相差不得少于18岁 ");
return false;
}


2.  计算年龄在18天到 多少岁                    (天与年)

//计算周岁(起始为天)
var countZhouSui2 = function jsGetAge(strBirthday,startDay,endAge){
var thisTime = new Date().getTime();
if(Math.abs((thisTime - Date.parse(strBirthday)))/(1000*60*60*24) < startDay){
return false;
}

var now = new Date();
var endBirthday = new Date(now.getFullYear(),now.getMonth(),now.getDate());
endBirthday.setMonth(endBirthday.getMonth()-endAge*12);
endBirthday.setMonth(endBirthday.getMonth()-12);
endBirthday.setDate(endBirthday.getDate()+2);


if(Date.parse(strBirthday) < Date.parse(endBirthday)){
return false;
}
return true;
};

//计算周岁(起始为天)
var countZhouSui2 = function jsGetAge(strBirthday,startDay,endAge){
var thisTime = new Date().getTime();
if(Math.abs((thisTime - Date.parse(strBirthday)))/(1000*60*60*24) < startDay){
return false;
}

var now = new Date();
var endBirthday = new Date(now.getFullYear(),now.getMonth(),now.getDate());
endBirthday.setMonth(endBirthday.getMonth()-endAge*12);
endBirthday.setMonth(endBirthday.getMonth()-12);
endBirthday.setDate(endBirthday.getDate()+2);


if(Date.parse(strBirthday) < Date.parse(endBirthday)){
return false;
}
return true;
};

0 0
原创粉丝点击