gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 23:50:56 27 4
gpt4 key购买 nike

我知道有很多与此相关的问题,但我找不到有帮助的信息...我只需要在我的脚本中解决这个问题,有人可以帮助我吗?

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();

谢谢

最佳答案

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

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

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

关于javascript - 无法读取未定义错误的属性 'getTime',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42780366/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com