如何使用javascript将meridiem(AM或PM)设置为日期

时间:2015-05-18 12:17:18

标签: javascript jquery angularjs date momentjs

我想将小时,分钟和毫秒以及子午线设置为日期

var newdate = new Date();
var splitedDate = context.timesheetlist.StartTime.split(":")//Start time is 03:45:28 AM
newdate.setHours(splitedDate[0]);// added hours
newdate.setMinutes(splitedDate[1]);// added minutes 

但我不知道如何将子午线(AMPM)添加到newdate对象中?

我没有在任何网站找到有价值的解决方案,我使用 moment.js

是否有可能在moment.jsangular.jsjavascriptjquery中解决此问题?

0 个答案:

没有答案