我正在进行一项必须使用Javascript的作业。在我的应用程序中,用户在表单中键入日期。然后我尝试将该日期与当前日期进行比较。不同之处在于他们完成任务所需的天数。但是,在计算方面我遇到了一些麻烦。 dueDate是动态创建的对象的参数。
function getFormData() {
var adate = document.getElementById("dueDate").value;
if (checkInputText(dueDate, "Please enter a date")) return;
...
}
function processDate(adate) {
var splitArray = adate.split("-");
var year = splitArray[0];
var month = splitArray[1] - 1;
var day = splitArray[2];
var date = new Date(year, month, day);
var dateParse = date.getTime();
return dateParse;
}
function compareDates(dueDate) { //dueDate is the value from the form
var cdate = new Date();
console.log("this is todays date" + " " + cdate); //shows correct date
var cdateparse = Date.parse(cdate);
var dueDateparse = Date.parse(dueDate);
var diff = dueDateparse - cdateparse;
var daysCal = diff / 1000 / 60 / 60 / 24;
var days = parseInt(daysCal); //where I'm having trouble
console.log(days);
if (days == 0) {
mymessage = " you have to do this task today";
}
try {
if (days < 0) {
mymessage = "this task is overdue by" + " " + -days + " " + "days";
throw new Error("you are overdue");
}
} catch (ex) {
alert(ex.message);
return;
}
if (days > 0) {
console.log("the difference is greater than 0");
mymessage = "you have" + " " + days + " " + "more days";
}
}
当我将当前日期输入表单时,会出现问题。我已经尝试过math.floor和math.round,但数字总是四舍五入并抛出我的信息,说这个任务已经过期了。使用parseInt让我最接近我想要的结果,但是当我在明天的约会时,它说我已经过期了。有什么建议吗?
答案 0 :(得分:2)
答案 1 :(得分:0)
您应该注意new Date(year, month, day);
在凌晨0:00创建时间戳。
所以那天 上发生的所有事情都会有负diff
(> -1
)。因此,您应该使用Math.ceil
而不是舍入。或者您将截止日期设置为23:59:59(即将日期增加1)。