我在javascript中有2个变量,其中有2个因为某种原因而被存储。
对前者说:
var currentdate = new Date();
var time1 = "24:00:00"; // everytime this will be 24
var time2 = var time2 = currentdate.getHours() +":"+ currentdate.getMinutes() ; // this is the system time
需要2次之间的差异。
如果尝试使用time1-time2
,但它无效。
如果2次之间的差异是x,我想做,然后执行一些任务。我需要它的不同之处。