指示 JavaScript 的日期读取日期字符串 dd/mm/yyyy 而不是 mm/dd/yyyy
我想解析日期字符串01/04/2022
4月1日和 not bike 1月4日 by JavaScript Date()。
有什么方法我可以强制/指示JavaScript的date()
将日期字符串读取为dd/mm/yyyy
,而不是mm/dd/yyyy < /代码>?
new Date('01/04/2022') // returns Tue Jan 04 2022 00:00:00 GMT+0100 (Central European Standard Time)
谢谢
I would like to parse the date string 01/04/2022
as April 1st and not like January 4th by JavaScript Date().
Is there any way I can force/instruct javascript's Date()
to read a date string as dd/mm/yyyy
and not as mm/dd/yyyy
?
new Date('01/04/2022') // returns Tue Jan 04 2022 00:00:00 GMT+0100 (Central European Standard Time)
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
创建一个函数来完成这项工作是非常微不足道的
您可以将其添加到
date
...所以您总是知道在哪里可以找到它但是,以上不会在无效的日期失败
,这样写
It's quite trivial to create a function to do the job
You could add it to
Date
... so you always know where to find ithowever, the above won't fail on an invalid date
To do so, write it like this
您可以使用法国格式:
You could use the french formating :
解决方案可能是一个字符串,希望下面的代码有帮助:
The solution may be a string hope the below code helps: