c# 获取当前时区时间

获取当前时区时间 time (东八区默认会减去8小时):

var time  = new Date(new Date().getTime() + (new Date().getTimezoneOffset() / 60) * 24 * 60 * 1000);

获取当前时区当前时间 time 字符串:

var  strTime = new Date().toLocaleString(Intl.DateTimeFormat().resolvedOptions().locale);

 

posted on 2022-09-13 16:06  空明流光  阅读(1589)  评论(0编辑  收藏  举报

导航