我有开始日期和结束日期,开始日期应该大于结束日期。
我还有两个日期选择器折扣开始日期和折扣结束日期
折扣开始日期应小于开始日期,折扣结束日期应小于结束日期如何在n java脚本或jQuery中编写验证
答案 0 :(得分:1)
您没有提供有关日期的任何信息 无论如何,逻辑总是一样的:
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 "