每天添加数量

发布于 2025-01-02 04:44:42 字数 296 浏览 0 评论 0原文

我不知道jquery是否可以实现这一点。你能检测到当前日期吗?如果经过特定日期的每一天,它都会加 1。

因此,第 0 天= 04/02/2012

0

第 1 天= 05/02/2012

< ;h1>1

第 2 天= 06/02/2012

2

作为一种计算网站一天活跃时间的方法。或者有更好的方法来做到这一点吗?

谢谢。

I don't know if this is possible with jquery. Can you detect the current date? And if for each day passed the specific date it adds 1.

So day 0= 04/02/2012

<h1>0</h1>

day 1= 05/02/2012

<h1>1</h1>

day 2= 06/02/2012

<h1>2</h1>

As a way to counting how long the day the website has been active. Or is there a better way to do this?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泪痕残 2025-01-09 04:44:42

如果您只是想知道今天是否是不同的一天,那么简单的事情就可以了:

var DayDiff = function (start) {
    var now = new Date().getTime();
    start = new Date(start).getTime();

    return Math.floor((now - start)/ 86400000);
};

document.write(DayDiff('2012-02-01')); // Today is 2/3, this would print "2"

JSFiddlehttp://jsfiddle.net/zfBrv/

If you just want to know if it's a different day, something as simple as this would work:

var DayDiff = function (start) {
    var now = new Date().getTime();
    start = new Date(start).getTime();

    return Math.floor((now - start)/ 86400000);
};

document.write(DayDiff('2012-02-01')); // Today is 2/3, this would print "2"

JSFiddle: http://jsfiddle.net/zfBrv/

以可爱出名 2025-01-09 04:44:42

Javascript 有 日期对象

Javascript has the Date Object

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文