判断选择时间不能小于当前时间的方法有很多,在本文为大家详细介绍下使用js是如何实现的,感兴趣的朋友可以尝试操作下
复制代码代码如下:
var controldate; 
function checkDate(){ 
controldate= document.getElementById("sendDate").value; 
if(controldate==""){ 
alert('日期不能为空'); 
return false; 
}else{ 
var day = new Date(); var Year = 0; 
var Month = 0; 
var Day = 0; 
var CurrentDate = ""; 
//初始化时间 
Year = day.getFullYear(); 
Month = day.getMonth()+1; 
Day = day.getDate(); 
//www.jbxue.com
CurrentDate += Year + "-"; 

if (Month >= 10 ) 

CurrentDate += Month + "-"; 

else 

CurrentDate += "0" + Month + "-"; 

if (Day >= 10 ) 

CurrentDate += Day ; 

else 

CurrentDate += "0" + Day ; 
} //alert(CurrentDate);//当前日期 

var startDate = new Date(CurrentDate.replace("-",",")).getTime() ; 
var endDate = new Date(controldate.replace("-",",")).getTime() ; if( startDate > endDate ) 

alert('选择日期不能小于当前日期!'); 
document.getElementById("sendDate").focus(); 
return false; 
}else{ 
return true; 


相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-03
  • 2022-12-23
  • 2022-12-23
  • 2021-05-25
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案