我在项目中使用倒数计时器。
我想做一个30天的柜台。
Javascript功能如下..
$(document).ready(function(){
JBCountDown({
secondsColor : "#ffdc50",
secondsGlow : "none",
minutesColor : "#9cdb7d",
minutesGlow : "none",
hoursColor : "#378cff",
hoursGlow : "none",
daysColor : "#ff6565",
daysGlow : "none",
startDate : "1385722978",
endDate : "1388314978",
now : "1385722978"
});
});
此功能最后需要3个参数..
startDate,endDate和now ..
我在startDate和endDate之间做了30天的差异。
但对如何以秒为单位设置当前时间感到困惑。
答案 0 :(得分:0)
我认为最简单的方法就是这样。
var current = new Date();
var seconds = (+current.getHours() * 60 * 60 + (+current.getMinutes() * 60 + (+current.getSeconds());
console.log(seconds)
答案 1 :(得分:0)
不确定JBCountDown
的作用,因为您没有提供代码......
首先看看时间似乎是关于如何在javascript中使用...(他们应该有3个以上的数字.. )
要获取当前日期,请尝试new Date().getTime()
如果您希望它以插件的格式显示,只需要偏离1000,那么new Date().getTime()/1000
如果您想设置now
参数,请尝试now : parseInt(new Date().getTime(),10)