English 中文(简体)
午夜与午夜。 j)
原标题:Confusion over noon versus midnight with date.js

我在该项目中使用date.js,我正在讨论我所期望的日期,这些日期恰好是午夜还是午夜。

当我使用本地的javascriptDate.parse。 在规定日期时,我得到预期的结果:

// plain old javascript
var date = new Date(Date.parse("10/21/2010 12:00:00 PM"));
alert(date);

我这样做:

中午12:00:00 GMT-0500(中央日光时间)

我将此解释为2010年10月21日中午,我认为我的投入日期是此。 然而,当我进口日期.js并尝试类似情况时,

// using date.js
var date = Date.parseExact("10/21/2010 12:00:00 PM", "M/d/yyyy hh:mm:ss tt");
alert(date);

我这样做:

弗里·2010年10月22日:00:00:00 GMT-0500(中央日光时间)

第二天晚上,我想到我。 我不知道为什么把它解释为午夜,或者说,它为什么在javascript中对这一不同解释作出解释。 我混淆了中午12:00之谈的意义? 错失日期。

最佳回答

类似版本的问题:

http://jsfiddle.net/4QK8Q/
http://jsfiddle.net/JKg3n/

第一个是你的文件(从古角度代码基数来看),第二个来自网站(日期.com)。 他们只想像同一版本,但显然有点。 我不太熟悉图书馆,以了解什么进展,但我建议提交一份简要报告。

问题回答

这是一个相当老的问题,但对于那些在搜查过程中可能 st倒的人来说,它非常建议你转向目前维持的日期。 如果你再次遭遇意外行为。

谷歌代码基和日期。





相关问题
Mysql compaire two dates from datetime?

I was try to measure what is faster and what should be the best way to compare two dates, from datetime record in MySql db. There are several approaches how to grab a date from date time, but I was ...

iPhone Date Picker rolls over to 2010 on December 27th?

So I implemented a UIDatepicker in one of my applications for scheduling and autodialing teleconferences... everything is pretty much ready to go except, while testing I noticed that when the date ...

Convert date Python

I have MMDDYY dates, i.e. today is 111609 How do I convert this to 11/16/2009, in Python?

specifying date format when using $form->inputs() in CakePHP

I am wondering if there is a way to specify the date format in the forms created using CakePHP s $form->inputs(); Please note that this is not the individual $form->input() but instead $form->inputs() ...

NSDateFormat, super simple! Where am I screwing up?

Ok, this is really simple, maybe I m a getting a bit burnt out, but seems like it should work, Query XML feed, put out date string, format, display in a cell. The issue is I m a getting a NULL ...

sqlite writing a date into an email

I am exporting a date value from sqlite and placing it into an email. The date appears like this 279498721.322872 I am using Objective C in an Iphone App. Does anyone know how to make this export ...

热门标签