//获取起始日期
var startDate=document.all.startdate.value;
//转换为日期格式
startDate=startDate.replace(/-/g,"/");
//获取结束日期
var endDate=document.all.enddate.value;
endDate=endDate.replace(/-/g,"/");
//如果起始日期大于结束日期
if(Date.parse(startDate)-Date.parse(endDate)>0){
alert("起始日期要在结束日期之前!");
//返回false
return false;
}
javascript判断日期大小
最新推荐文章于 2024-07-11 11:04:59 发布