我有开始日期和结束日期,开始日期应该大于结束日期。
我还有两个日期选择器折扣开始日期和折扣结束日期。
折扣开始日期应早于开始日期,折扣结束日期应早于结束日期。如何在 Javascript 或 jQuery 中编写验证?
我有开始日期和结束日期,开始日期应该大于结束日期。
我还有两个日期选择器折扣开始日期和折扣结束日期。
折扣开始日期应早于开始日期,折扣结束日期应早于结束日期。如何在 Javascript 或 jQuery 中编写验证?
无论如何,您没有提供有关日期格式的任何信息,逻辑始终相同:
var date,endDate,dateDiscount,endDateDiscount;
if ((date<=endDate) || (dateDiscount>=date) || (endDateDiscount>=endDate)) alert('error! dates not good')
解释:
(date<=endDate) //the reverse of "start date should be greater than end date"
(dateDiscount>=date) //the reverse of "discount start date should be less than start date"
(endDateDiscount>=endDate) // the reverse of "discount end date should be less than end date "