这样的函数,那么你必须坚持使用chrome浏览器。
我正在尝试创建一个datetimepicker,它必须显示日期,就像下面使用trntrichardson插件使用datetimepicker。
2013年4月2日星期二IST 12:00
我有以下代码,其中我将UTC时间存储为值,并在文本中显示本地时间,但我无法添加本地时区缩写,如IST, CST等,如上述日期所示。
plz是否有任何工作可以完成…我正在使用moment插件来转换utc和当地时间。
_createDateTime: function () {
var min = this.element.attr("data-minRelDate"),
max = this.element.attr("data-maxRelDate");
this._Input = $("<input>")
.addClass("datetime")
.datetimepicker({
numberOfMonths: 2,
minDate: min,
maxDate: max,
dateFormat: $.datepicker.RFC_1123,
hourGrid: 2,
minuteGrid: 5,
timeFormat: "hh:mm TT z",
showTimeZone: true,
onSelect: $.proxy(this._change, this)
})
.appendTo(this._Wrapper);
_change: function(){
var val = this._Input.datepicker("getDate");
//var test = moment(val).format();
//UTC to store value in server.
this.element
.attr("data-datetime", moment.utc(val)
.format("LLLL"));
//LocalTime To display.
this._Input.datepicker("setDate", new Date(moment(val).format("LLLL")));
}
我已经转换为本地时间,并给datetimepicker日期,我所需要做的就是在日期字符串....中添加时区缩写关于plz的任何工作.....
https://github.com/timrwood/moment/issues/162
如果你想使用Data.Prototype.Tostring