我知道有很多与此相关的问题,但我无法找到有用的信息......我只需要在我的脚本中解决这个问题,是否有人可以帮助我?< / p>
function dateValidation() {
this.validateDate = function() {
var twoDates = {
inputDate: $('#employmentDate').val(),
todaysDate: new Date()
}
return twoDates.inputDate.getTime() < twoDates.todaysDate.getTime();
}
}
var validation = new dateValidation();
validation.validateDate();
这个错误我上线8:
return twoDates.inputDate.getTime() < twoDates.todaysDate.getTime();
谢谢
答案 0 :(得分:1)
创建Date
对象而不是字符串,更改此行
inputDate: $('#employmentDate').val(),
到
inputDate: new Date($('#employmentDate').val()),