我只想要比较两个日期的时间戳,但它不会将字符串转换为日期。我试过这段代码:
var a_date = new Date('2013-03-25');
var b_date = new Date('25-03-2013');
alert(a_date + '***' + b_date);
我在 Firefox 和 IE7 上都试过了。Datea_date
在 Firefox 中有效,但在 IE7 中无效(它提供Invalid Date
价值),b_date
在 IE7 上有效,但在 Firefox 中无效(它提供NaN
价值)。有什么方法可以只使用一种日期格式来运行两者?