我无法在java-script中添加两次。我使用了像这样的代码
var dbEndtime1 = new Date(dbEndtime);
var hours = dbEndtime1.getHours();
alert(dbEndtime1 + " hours" + hours);
它没有给出时间
dbEndtime="10:40:00"
我想为此增加一些时间,我需要与1:00:00.
total-time=10:40:00+5hours
,total-time>1:00:00
和total-time<24:00:00
我想实现这个逻辑。但我没有在java脚本中完成它。
答案 0 :(得分: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
}