From Date will not be accept earlier than 13 months in javascript

前端 未结 2 1762
有刺的猬
有刺的猬 2021-01-29 04:22

Here i have \"From Date\" and \"To Date\" with submit button. And i\'m using telerik radate control for this project. So, I couldn\'t add that telerik control.

Here Ever

2条回答
  •  独厮守ぢ
    2021-01-29 04:57

    var toDate= urToDate;
    var fromDate= urFromDate;
    fromDate.setMonth(toDate.getMonth()+13);
    
    if(fromDate>toDate)
    {
    //Do your work
    }
    else
    {
    //from date is older
    }
    

提交回复
热议问题