使用 DateJS 显示当月的最后一个星期四
我试图用 DateJS 显示当月的最后一个星期四,但是这个库实际上不起作用为我。您能帮我解决一下吗?
I am trying to show the last thursday of the current month with DateJS, however this library doesn't really work for me. Could you please help me with the solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要使用 moveToLastDayOfMonth() 方法,如下所示
:在 Firebug 中尝试过。我还检查了
last().sunday()
因为这个月以星期日结束。You may want to use the moveToLastDayOfMonth() method as follows:
Just tried it in Firebug. I also checked for
last().sunday()
since this month ends with a Sunday.