你可以做的是使用Globalize jQuery 插件。我从答案修改了演示。该演示演示了您的要求的一种可能实现。
我使用了以下
formatter: function (cellvalue) {
// we don't use time zones information in the code below
var dMatch = cellvalue.match(new RegExp("([0-9]{4})(-([0-9]{2})(-([0-9]{2})" +
"(T([0-9]{2}):([0-9]{2})(:([0-9]{2})(.([0-9]+))?)?" +
"(Z|(([-+])([0-9]{2}):([0-9]{2})))?)?)?)?")),
date = new Date(
Number(dMatch[1] || 0), // year
Number(dMatch[3] || 0)-1, // month
Number(dMatch[5] || 0), // day
Number(dMatch[7] || 0), // hours
Number(dMatch[8] || 0), // minutes
Number(dMatch[10] || 0), // seconds
Number(dMatch[12] || 0)
); // milliseconds
return Globalize.format(date, "F");
},
unformat: function (v) {
return Globalize.parseDate(v);
}