如何在JavaScript中获取时区名称?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在JavaScript中获取时区名称?相关的知识,希望对你有一定的参考价值。
我知道如何获得时区偏移,但我需要的是能够检测“美国/纽约”之类的东西。这甚至可能来自javascript还是我将不得不根据偏移量进行猜测?
Internationalization API支持获取用户时区,并且在所有当前浏览器中都是supported。
console.log(Intl.DateTimeFormat().resolvedOptions().timeZone)
您可以使用此脚本。 http://pellepim.bitbucket.org/jstz/
在这里分叉或克隆存储库。 https://bitbucket.org/pellepim/jstimezonedetect
包含脚本后,您可以在-jstz.olson.timezones
变量中获取时区列表。
以下代码用于确定客户端浏览器的时区。
var tz = jstz.determine();
tz.name();
享受jstz!
您可以使用以下映射表编写自己的代码:http://www.timeanddate.com/time/zones/
或者,使用moment-timezone库:http://momentjs.com/timezone/docs/
见zone.name; // America/Los_Angeles
或者,这个图书馆:https://github.com/Canop/tzdetect.js
试试这个代码来自here
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js">
</script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jstimezonedetect/1.0.4/jstz.min.js">
</script>
<script type="text/javascript">
$(document).ready(function(){
var tz = jstz.determine(); // Determines the time zone of the browser client
var timezone = tz.name(); //'Asia/Kolhata' for Indian Time.
alert(timezone);
});
</script>
最受欢迎的answer可能是获得时区的最佳方式,但是,Intl.DateTimeFormat().resolvedOptions().timeZone
按照定义返回IANA时区名称,这是英文版。
如果你想用当前用户的语言命名时区,你可以从Date
的字符串表示中解析它,如下所示:
function getTimezoneName() {
const today = new Date();
const short = today.toLocaleDateString(undefined);
const full = today.toLocaleDateString(undefined, { timeZoneName: 'long' });
// Trying to remove date from the string in a locale-agnostic way
const shortIndex = full.indexOf(short);
if (shortIndex >= 0) {
const trimmed = full.substring(0, shortIndex) + full.substring(shortIndex + short.length);
// by this time `trimmed` should be the timezone's name with some punctuation -
// trim it from both sides
return trimmed.replace(/^[s,.-:;]+|[s,.-:;]+$/g, '');
} else {
// in some magic case when short representation of date is not present in the long one, just return the long one as a fallback, since it should contain the timezone's name
return full;
}
}
console.log(getTimezoneName());
在javascript中,Date.getTimezoneOffset()方法返回当前语言环境与UTC的时区偏移(以分钟为单位)。
var x = new Date();
var currentTimeZoneOffsetInHours = x.getTimezoneOffset() / 60;
Moment'timezone将是一个有用的工具。 http://momentjs.com/timezone/
转换时区之间的日期
var newYork = moment.tz("2014-06-01 12:00", "America/New_York");
var losAngeles = newYork.clone().tz("America/Los_Angeles");
var london = newYork.clone().tz("Europe/London");
newYork.format(); // 2014-06-01T12:00:00-04:00
losAngeles.format(); // 2014-06-01T09:00:00-07:00
london.format(); // 2014-06-01T17:00:00+01:00
以上是关于如何在JavaScript中获取时区名称?的主要内容,如果未能解决你的问题,请参考以下文章