网上商店中的商品有时间戳,如果过了 x 时间,我希望删除该商品

发布于 2024-10-02 01:56:01 字数 270 浏览 7 评论 0原文

因此,我网上商店中的所有商品都有时间戳。每次商品有货时,日期都会更新,一旦商品变得不可用,日期就不会更新。到目前为止,一切都很好。例如,现在有一个项目的最后可用时间是 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 技术交流群。

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

发布评论

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

评论(1

以可爱出名 2024-10-09 01:56:01
var d = Date.parse("2010-09-25")); //in ms from 1970
var now = new Date().getTime(); //now in ms
var days = (now - d)/ (1000*60*60*24); //diff / 1 day in ms
if(days >= 30){
  //hide your stuff
}

还有一些库可以在 javascript 中处理日期/时间,并使用内置方法进行类似的比较。

var d = Date.parse("2010-09-25")); //in ms from 1970
var now = new Date().getTime(); //now in ms
var days = (now - d)/ (1000*60*60*24); //diff / 1 day in ms
if(days >= 30){
  //hide your stuff
}

There are also a couple of libraries to handle date/time in javascript with built-in method for comparisons like this.

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