更改日期,使所有时间偏移 4 小时
我想将 Date
对象调整为始终为 4 小时偏移。我将如何实现这一目标?
var d = new Date();
// d would be 4 hours in the past
I want to adjust the Date
object to always be 4 hours offset. How would I achieve this?
var d = new Date();
// d would be 4 hours in the past
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可能会想出一个更好的名字。
如果您希望破坏页面上的所有 javascript,您当然可以使用:
然后您可以通过调用
Date.fix()
来修复它You may come up with a better name.
If you wish to break all javascript on your page you may of course use:
You can then fix it by calling
Date.fix()
像这样的事情:
Something like this:
您可以创建具有特定日期的日期对象。只需从当前时间减去正确的毫秒并将其传递给日期函数:
或者您可以手动设置小时
You can create a date object with a particular date. Just subtract the correct milliseconds from the current time and pass that to the date function:
or you can manually set the hours