我正在寻找以下的东西

timestamp1 = Time.now?
timestamp2 = lastSave --- My func would be setting this


if(比较(timestamp1与timestamp2)> 5秒

关于如何使用JS的任何想法?谢谢

最佳答案

您是否在寻找时间?

您可以在Firefox的Firebug控制台中尝试以下操作:

timestamp1 = new Date();

for (var i = 0; i < 10; i++) console.log(timestamp1);

timestamp2 = new Date();

console.log(timestamp2 - timestamp1);
console.log((timestamp2 - timestamp1) / 1000);


最后一个是秒数。

10-05 23:26