我对javascript不太了解。所以请帮帮我。
如何设置 2013 年 3 月 1 日凌晨 3:00:00 的倒计时?
喜欢;
日期前:x 天 x 时间 x 分钟
日期:是的,3 月 1 日
日期之后:您错过了这一天:(
我之前发布过一个问题,但我没有很好地描述它。我希望这次我做到了。请帮忙。我真的需要在我的网页上设置倒计时(HTML)
我对javascript不太了解。所以请帮帮我。
如何设置 2013 年 3 月 1 日凌晨 3:00:00 的倒计时?
喜欢;
日期前:x 天 x 时间 x 分钟
日期:是的,3 月 1 日
日期之后:您错过了这一天:(
我之前发布过一个问题,但我没有很好地描述它。我希望这次我做到了。请帮忙。我真的需要在我的网页上设置倒计时(HTML)
使用此代码,您可以知道从 date1 到 date2 还剩多少天
var date1 = new Date("Feb 3 2013 10:49:00");
var date2 = new Date("Feb 4 2013 10:49:00");
var days = (date2 - date1) / 1000 / 60 / 60 / 24;
document.write( "remain " + days + " to <b>" +date2 + "</b>");
var x=new Date();
x.setFullYear(2013,2,1);
var today = new Date();
if (x>today)
{
alert("You missed the day.");
}
else if (x<today)
{
alert("x day left");
}
else {
alert("This is the day");
}
您只需要计算剩下的 X 天。
(2013,2,1) 在 JavaScript 中表示 2013 年 3 月 1 日。参考
整个互联网?伙计,这是很多搜索。
var x=new Date();
x.setFullYear(2013,2,1);
var today = new Date();
if (x>today) {
alert("Today is before March 1st, 2013");
} else {
alert("Today is after March 1st, 2013");
}