日期书签需要在单位数月份和日期上前导零

发布于 2024-07-18 23:30:07 字数 608 浏览 8 评论 0原文

我有一个小书签,用于检查每日日志文件。 然而,我使用的书签仅以个位数提供月份和日期,但日志文件使用两位数。

例如我的书签提供: http://url/log/2009-5-4_localcontrol-story.log, 而日志文件实际上位于: http://url/log/2009-05-04_localcontrol-story.log

下面是我当前的代码:

javascript:d=new%20Date();window.open("http://url/log/"+d.getFullYear()+"-"+(d.getMonth()+1)+"-"+(d.getDate())+"_localcontrol-story.log",%20"_self");

您能否告诉我对此的修改,以便我以 2 位数格式获取月份和日期,并在必要时添加前导零?

I have a bookmarklet I use to check daily log files. However the bookmarklet I use only delivers the month and day in single digits, however the log files use double digits.

For example my bookmarklet delivers:
http://url/log/2009-5-4_localcontrol-story.log,
while the log file actually lives at:
http://url/log/2009-05-04_localcontrol-story.log

Below is my current code:

javascript:d=new%20Date();window.open("http://url/log/"+d.getFullYear()+"-"+(d.getMonth()+1)+"-"+(d.getDate())+"_localcontrol-story.log",%20"_self");

Can you tell me an adaptation to this so I get my month and date in 2 digit format with the leading zero if necessary?

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

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

发布评论

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

评论(1

倾听心声的旋律 2024-07-25 23:30:07

这有点痛苦,但我所做的是做这样的事情:(

("0"+d.getDate()).slice(-2)

添加前导零,并且 slice(-2) 获取最后 2 个字符)

it's kind of a pain, but what I've done is to do stuff like this:

("0"+d.getDate()).slice(-2)

(add a leading zero, and slice(-2) takes the last 2 characters)

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