如何使用 jquery 获取用户时区?
我想用 'Asia/Calcutta' 或 'Australia/Darwin'
我在 myserver 上安装了 php,它的时间设置为 'UTC'
I have php installed on myserver and its time set to 'UTC'
推荐答案
检测时区偏移可以使用这个函数:
For detecting timezone offset you can use this function:
function get_time_zone_offset( ) {
var current_date = new Date();
return parseInt(-current_date.getTimezoneOffset() / 60);
}
您可以在这里查看示例
相关文章