如何使用 JavaScript 了解一个国家/地区是否使用夏令时?
我在中国,我有一个朋友在其他国家。例如英国、美国、新西兰...
我知道他的国家的英文名称和时区。
但我怎么知道他的国家现在是否实行夏令时呢?有什么想法吗?
谢谢你!
I'm in China and I've a friend who is in other countries. e.g. UK, USA, New Zealand...
I know his country's name in English and time zone there.
But how can I know whether his country is using DST now or not? Any ideas?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
以下是使用 JSONP 和一些 Yahoo 服务的示例:
Here is an example using JSONP and some Yahoo services:
检查这个脚本可能对你有帮助。参考:
http://www.irt.org/
< /strong>Check this script might help you. Reference:
http://www.irt.org/
好吧,我只是拼凑了这段代码来确定当前选择的时区是否使用夏季调整以及当前是否有效。这是为 Windows Scripting Host 编写的,但可以将
WScript.Echo
替换为window.alert
或您喜欢的任何环境,以适应您选择运行它的环境...Well, I just cobbled together this bit of code to identify whether the currently selected time zone uses summer adjustment and whether it is currently in effect. This was written for Windows Scripting Host, but replace
WScript.Echo
withwindow.alert
or whatever you prefer for whichever environment you choose to run it in...