移动浏览器中的 Javascript UTC 日期问题
我目前正在制作一个 jQuery Mobile 应用程序并使用 Phone Gap 部署到多个平台。不幸的是,我注意到在使用 Javascript 的 UTC 日期函数系列时,桌面和移动兼容性之间似乎存在一些不一致的行为。
有没有人在 Android、iPhone 和/或 Blackberry 上遇到过类似的问题?我目前认为这是本机浏览器问题,因为 Chrome 和 Firefox 似乎具有预期的行为。
正常用法:
var d = new Date();
var utc_month = d.getUTCMonth();
对于桌面浏览器产生一个 int
值,对于移动浏览器产生一个 NaN
值 utc_month。有什么想法吗?我在 PhoneGap 上找不到太多关于从本机浏览器公开日期时间的信息~
I'm currently making a jQuery Mobile application and using Phone Gap to deploy to multiple platforms. Unfortunately, I'm noticing that there seems to be some inconsistent behavior between the desktop and mobile compatibilities in using Javascript's family of UTC date functions.
Has anyone experienced similar issues with Android, iPhone, and / or Blackberry in this regard? I currently think that it's a native browser issue as Chrome and Firefox seem to have the expected behavior.
The normal usage of:
var d = new Date();
var utc_month = d.getUTCMonth();
Yields an int
value for desktop browsers and a NaN
value for utc_month on mobile browsers. Any thoughts? I wasn't able to find much on PhoneGap about exposing datetime from native browsers~
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该示例在使用 PhoneGap 的 Android 2.2 上运行良好(将 'int utc_month ...' 更改为 'var utc_month ...' 后)。
您的代码中是否有相同的拼写错误?我运行了以下命令:
6 收到警报。
The example works fine for me on Android 2.2 with PhoneGap (after changing 'int utc_month ...' to 'var utc_month ...').
Do you have the same typo in your code? I ran the following:
6 gets alerted.