我有一个 Web 方法,我从中返回 Date 它正在返回日期,就像"Mon Sep 30 07:26:14 EDT 2013"
我现在在我的 javascript 代码中转换日期格式时一样:
var d= SomeDate.format("MM/dd/yyyy hh:mm:ss tt"); //Somedate is comming from web method
但是在 IE7 中(09/30/2013 04:56:14 PM)
它显示错误的时间,但在 IE9 中(09/30/2013 07:26:14 AM)
它工作正常。
我们如何在 IE7 中做到这一点?