Find out the previous year date from current date in javascript

后端 未结 12 1394
执念已碎
执念已碎 2021-02-02 07:43

I need to find out the previous year date from current date and then set as minDate in jQuery UIdatepicker in javascript

My date formaqt is dd-mm-yy

<
12条回答
  •  故里飘歌
    2021-02-02 08:42

    To avoid the Date object (if that is what OP wishes):

    var currDate = '25-07-2012';
    var dateParts = currDate.split('-');
    dateParts[2] = parseInt(dateParts[2], 10) - 1;
    alert(dateParts.join('-'));​
    

提交回复
热议问题