0

我无法在 java-script 中添加两次。我使用了这样的代码

var dbEndtime1 = new Date(dbEndtime);
var hours  = dbEndtime1.getHours();
alert(dbEndtime1 + " hours" + hours);

它不给时间

dbEndtime="10:40:00"我想为此增加几个小时,并且我需要用1:00:00.Like检查再次出现的值total-time=10:40:00+5hourstotal-time>1:00:00并且total-time<24:00:00

我想实现这个逻辑。但我没有在 java-script 中完成它。

4

1 回答 1

0

这是我的解决方案

var now = new Date("2013/1/1 02:14");
now.setHours(now.getHours()+5);


alert(now.getHours())

if(now.getHours()==1 && now.getMinutes()==0 && now.getSeconds()==0){
  //It 's 1:00:00
}

http://jsfiddle.net/sechou/2SLPm/

于 2013-01-08T06:13:13.663 回答