Javascript Date.parse 在黑莓浏览器中返回 NaN
这是我尝试在黑莓模拟器浏览器(OS V6.0)中运行的代码。
<html>
<body>
<script type="text/javascript">
var d = Date.parse("Tue Oct 25 2011 18:33:17 GMT+0230");
var d1 = Date.parse("Tue Oct 25 2011 18:33:17");
document.write(d+"::::::"+d1);
</script>
</body>
</html>
每当我传递给 parse
方法的字符串中存在 GMT 信息时,它都会返回 NaN
,而如果 GMT 信息不存在,它会返回一个值。但是我无法从我的字符串中删除 GMT 部分。
知道为什么会失败吗?请注意,这种情况仅发生在黑莓手机中。
提前致谢。
This is the code I am trying to run in blackberry simulator browser (OS V6.0).
<html>
<body>
<script type="text/javascript">
var d = Date.parse("Tue Oct 25 2011 18:33:17 GMT+0230");
var d1 = Date.parse("Tue Oct 25 2011 18:33:17");
document.write(d+"::::::"+d1);
</script>
</body>
</html>
Whenever the GMT information is there is in the string I pass to parse
method,it returns NaN
,whereas it is returning a value if the GMT information is not there.But I cannot remove the GMT part from my string.
Any idea why this is failing?.Please note that it is happening in blackberry only.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如评论中所说,您可以删除 GMT 部分:
然后解析数据:
最后添加 GTM 部分:
代码未经测试,最后一次调用对应于 datejs 库。
As said in the comments, you can remove the GMT part:
then parse the data:
and finally, add the GTM part:
The code is not tested and the last call corresponds to the datejs library.
我必须创建自己的日期字符串,黑莓很乐意解析它。我没有添加 GMT。
I had to create my own date string that BlackBerry was happy to parse. I did not add GMT.