移动浏览器中的 Javascript UTC 日期问题

发布于 2024-11-25 11:29:55 字数 435 浏览 0 评论 0原文

我目前正在制作一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暖阳 2024-12-02 11:29:55

该示例在使用 PhoneGap 的 Android 2.2 上运行良好(将 'int utc_month ...' 更改为 'var utc_month ...' 后)。

您的代码中是否有相同的拼写错误?我运行了以下命令:

var utc_month = d.getUTCMonth();  alert (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:

var utc_month = d.getUTCMonth();  alert (utc_month);

6 gets alerted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文