我正在尝试创建一个时差函数。而且我需要能够判断是否粘贴了 CookieTime。我尝试了许多不同的东西,但似乎无法让它发挥作用。关于为什么这不会减去的任何建议?
我昨晚在帮助下成功完成了 DateDiff:Javascript DateDiff
我的控制台中的错误是: Uncaught TypeError: Object 12:34:00 has no method 'getTime' 不知道我是否理解这意味着什么。
CookieTime = "12:34:00"; //Cookie time...
currTime = "05:11:55"; //Current Real Time...
function past(){
//Print the results for testing...
document.write(CookieTime + '<br>'); // = 12:34:00
document.write(currTime + '<br/>'); // = 05:11:55
// = Testing the results here = NaN
document.write(CookieTime.getTime() - currTime.getTime() + '<br/>');
if (CookieTime - currTime >= 0){
// Time has pasted!!
return true;
} else {
// Time is not here yet!!
return false;
}
}
document.write(past()); //Print response.