Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我做:
var myDate = new Date();
它是否默认使用 UTC 时区?或者这可能会因客户位置而异?
来自MDN
如果您不提供任何参数,则构造函数会根据本地时间为今天的日期和时间创建一个 JavaScript Date 对象。
这仅取决于您的当地时间。
AFAIK它从运行它的机器上获取日期和时间,并且它将使用操作系统提供的任何时区,所以我相信它会根据客户端位置而改变,前提是他们的机器设置正确。