我在验证日期时遇到问题,在我的代码中,我使用了一个接受2012年日期的正则表达式,如果我将yr设置为2013年,则会显示“无效日期”。请在这方面帮助我。它应该接受任何年份。.我的意思是至少从2000年到3000年为有效年。
提前致谢。

function checkDates(){
  var sdate = "2013-01-02";
  var edate = "2013-01-02";

  if (!isValidDate(sdate)) {
         alert("Report Start Date is Invalid!!");
         return false;
    }

    if (!isValidDate(edate)) {
     alert("Report End Date is Invalid!!");
     return false;
   }
   return true;
}


function isValidDate(sText) {

    var reDate = /(?:([0-9]{4}) [ -](0[1-9]|[12][0-9]|3[01])[ -]0[1-9]|1[012])/;  // yy/mm/dd
    return reDate.test(sText);
}

最佳答案

正则表达式中有多余的空间,缺少括号(括号问题使它接受2012-aa-xx日期:

/(?:([0-9]{4}) [ -](0[1-9]|[12][0-9]|3[01])[ -]0[1-9]|1[012])/
              ^                               ^
-------------/-------------------------------/


所以:

([0-9]{4}[ -](0[1-9]|[12][0-9]|3[01])[ -](0[1-9]|1[012]))

09-12 21:30