Validate that end date is greater than start date with jQuery

前端 未结 15 1873
隐瞒了意图╮
隐瞒了意图╮ 2020-11-22 13:14

How do I check/validate in jQuery whether end date [textbox] is greater than start date [textbox]?

15条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-22 13:44

    If the format is guaranteed to be correct YYYY/MM/DD and exactly the same between the two fields then you can use:

    if (startdate > enddate) {
       alert('error'
    }
    

    As a string comparison

提交回复
热议问题