每天添加数量
我不知道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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只是想知道今天是否是不同的一天,那么简单的事情就可以了:
JSFiddle:http://jsfiddle.net/zfBrv/
If you just want to know if it's a different day, something as simple as this would work:
JSFiddle: http://jsfiddle.net/zfBrv/
Javascript 有 日期对象
Javascript has the Date Object