源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

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

  • 时间:2021-05-29 07:53 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:js判断选择时间不能小于当前时间的示例代码
[u]复制代码[/u] 代码如下:
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; } } }
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部