网上商店中的商品有时间戳,如果过了 x 时间,我希望删除该商品
因此,我网上商店中的所有商品都有时间戳。每次商品有货时,日期都会更新,一旦商品变得不可用,日期就不会更新。到目前为止,一切都很好。例如,现在有一个项目的最后可用时间是 2010 年 9 月 25 日(这是时间戳的格式)。
我现在想要做的是从列表中删除该商品,因为它在过去 30 天内不可用。列表位于 div 容器中,因此我真正需要做的就是为 div 提供 display:none 样式,这不是问题。
问题是,我不知道如何编写“如果 30 天过去了”的代码...任何帮助将不胜感激,谢谢! :)
so, all the items in my webshop have timestamps on them. the date is updated every time the item is available and it will not update once the item has become unavailable. so far so good. for example now there is an item that was last available on 2010-09-25 (this is the format of the timestamp).
what i want to do now is removing this item from the listings, because it wasn't available for the past 30 days. the listings are in a div container, so all i really need to do is give the div a display:none style, which isn't the problem.
the problem is, that i don't know how to code the "if 30 days passed" thing... any help with that would be appreciated, thanks! :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
还有一些库可以在 javascript 中处理日期/时间,并使用内置方法进行类似的比较。
There are also a couple of libraries to handle date/time in javascript with built-in method for comparisons like this.