带有完整日历预设小时的Datetimepicker



我在很久之后进行了bin搜索,以在http://trentrichardson.com/examples/timepicker/日期时间选择器,但我仍然无法使它工作。

var start = $('#eventStart').datetimepicker({
     dateFormat: "yy-mm-dd",
     hour: 12,
     minute: 15,
     stepMinute: 15
});

我的输入是订单

我的问题是如何从我的完整日历中设置当前选定日期的时间,如12:15

select: function(start, end, allvDay) {
     $('#eventStart').datepicker("setDate", new Date(start));
     $('#eventEnd').datepicker("setDate", new Date(end));
     $myCalendar.fullCalendar('unselect');
     $("#calEventDialog").dialog("option", "title", "Add Event");
     $('#calEventDialog').dialog('open');
  },

我在firebug中得到了他的打印"分析日期字符串时出错:在日期12:15中发现额外/未分析的字符"

任何能帮我的人,

//Tobias

我猜是date time format的问题。

日期-时间选择器函数使用您给定的小时和分钟,在解析日期时,您没有提到format中的相应字段。

请尝试更改您的date format to "yy-mm-dd HH:mm"

相关内容

  • 没有找到相关文章

最新更新