获取本地日期字符串和时间字符串
我正在尝试获取 LocaleDateString 和 LocaleTimeString ,这将是 toLocaleString() 但 LocaleString 为您提供 GMT+0100 (GMT夏令时) 我不希望显示它。
我可以使用类似的东西吗:
timestamp = (new Date()).toLocaleDateString()+toLocaleTimeString();
非常感谢
I am trying to get the LocaleDateString and the LocaleTimeString which that would be toLocaleString() but LocaleString gives you GMT+0100 (GMT Daylight Time) which I wouldn't it to be shown.
Can I use something like:
timestamp = (new Date()).toLocaleDateString()+toLocaleTimeString();
Thanks alot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以按原样使用本地日期字符串,只需调整小时、分钟和秒即可。
此示例用前导 0 填充个位数,并调整 am/pm 的小时数。
You can use the local date string as is, just fiddle the hours, minutes and seconds.
This example pads single digits with leading 0's and adjusts the hours for am/pm.
如果您使用普通方法构建字符串,它将自动进行区域设置(和 TZ)转换。
例如
If you build up the string using vanilla methods, it will do locale (and TZ) conversion automatically.
E.g.