有没有办法更改Javascript的getTimezoneOffset以返回不同的时区偏移?
Fox示例,我当地的时区是GMT-8,但我希望Date.getTimezoneOffset()返回GMT-1,所以我这样做如下:
var timeZone1 = new Date(Date.parse("2011-01-01T00:00:00-01:00"));
document.write("The local time zone is: GMT " + timeZone1.getTimezoneOffset()/60);
//show:The local time zone is: GMT-8
那么,如何让它显示GMT-1?
参考链接:
https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset
答案 0 :(得分:6)
我不认为javascript有直接的方法可以做到这一点,所以你可以自己计算或使用日期库。
http://code.google.com/p/datejs/ datejs是一个非常好的库。
自己尝试一下,
function calcTime(offset) {
d = new Date();
//Deal with dates in milliseconds for most accuracy
utc = d.getTime() + (d.getTimezoneOffset() * 60000);
newDateWithOffset = new Date(utc + (3600000*offset));
//This will return the date with the locale format (string), or just return newDateWithOffset
//and go from there.
return newDateWithOffset.toLocaleString();
}
然后像calcTime('-1')
答案 1 :(得分:3)
使用纯JavaScript的快速快速解决方案。
var currentTime = new Date();
var currentTimezone = currentTime.getTimezoneOffset();
currentTimezone = (currentTimezone/60) * -1;
if (currentTimezone !== 0)
{
utc = currentTimezone > 0 ? ' +' : ' ';
utc += currentTimezone
}
alert(utc);

答案 2 :(得分:-1)
getTimezoneOffset()
函数始终返回机器的时区偏移量。