无法读取属性' getTime'未定义的错误

时间:2017-03-14 07:46:41

标签: javascript oop

我知道有很多与此相关的问题,但我无法找到有用的信息......我只需要在我的脚本中解决这个问题,是否有人可以帮助我?< / 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();

谢谢

1 个答案:

答案 0 :(得分:1)

创建Date对象而不是字符串,更改此行

inputDate: $('#employmentDate').val(),

inputDate: new Date($('#employmentDate').val()),