js判断选择时间不能小于当前时间的示例代码

(编辑:jimmy 日期: 2024/10/10 浏览:2)

复制代码 代码如下:
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();

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;
}
}
}

一句话新闻

高通与谷歌联手!首款骁龙PC优化Chrome浏览器发布
高通和谷歌日前宣布,推出首次面向搭载骁龙的Windows PC的优化版Chrome浏览器。
在对骁龙X Elite参考设计的初步测试中,全新的Chrome浏览器在Speedometer 2.1基准测试中实现了显著的性能提升。
预计在2024年年中之前,搭载骁龙X Elite计算平台的PC将面世。该浏览器的提前问世,有助于骁龙PC问世就获得满血表现。
谷歌高级副总裁Hiroshi Lockheimer表示,此次与高通的合作将有助于确保Chrome用户在当前ARM兼容的PC上获得最佳的浏览体验。