我的日期为"Wed, 29 Jun 2016"
,时间为"11:35 PM"
格式
如何用它创建日期时间对象?
像Time.current那样。
答案 0 :(得分:3)
如果您的日期可以解析,通常很简单:
$('.progressvalue').each(function() {
var $this = $(this);
$this.css('width', $this.data('percent') + '%');
$this.siblings().text('tournament progress: ' + $this.data('percent') + '%');
});
然后,您可以以任何其他日期/时间使用它。
答案 1 :(得分:1)
为什么你不使用下一个:
Time.parse('Wed, 29 Jun 2016 11:35 PM')
=> 2016-06-29 23:35:00 +0300