Home > Web Front-end > JS Tutorial > body text

js sample code to determine that the selected time cannot be less than the current time_javascript skills

WBOY
Release: 2016-05-16 17:21:30
Original
1568 people have browsed it
复制代码 代码如下:

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;
}
}
}
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!