我有以下数据:
var currentTime: 2013-07-11 15:55:36+00:00 var currentTimezone: Africa/Asmera
我需要一种将 UTC 中的 currentTime 转换为基于 currentTimezone 的新时间的方法。
我查看了Timezone.js,但在实现它时遇到了麻烦(网站上的说明有点模棱两可)
包括我打算使用的功能的代码。谢谢 :)
<script>
$("#storeTime").click(function(){
storeCurrentTime();
})
$("#getTime").click(function(){
retrieveTime();
})
$("#storeTimezone").click(function(){
var yourTimezone = $('#timezone-select').find(":selected").text();
tz = yourTimezone.toString();
storeCurrentTimezone(tz);
})
$("#convertTime").click(function(){
//get the most recent UTC time, clean it up
var currentTime = $('#RetrievedTime').html();
currentTime = currentTime.split(": ")[1];
$('#convertedTime').html("Converted Time: " + currentTime);
//get the saved timezone
var currentTimezone = $('#storedTimezone').html();
})
</script>