我有一个像这样的日期列表
img {
opacity: 0
}
我想转换为ISO格式进行存储
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a href="#" title="aubergine">hover this to show image</a>
<a href="#" title="test">hover this to show image</a>
<img width="300" height="300" alt="aubergine" src="http://i.imgur.com/0MmkDiI.jpg"></img>
<img width="300" height="300" alt="test" src="http://i.stack.imgur.com/gVqLo.png"></img>
通常情况下,我会使用moment.js这样的内容,但看起来它们很快会转到stop supporting this functionality。
我如何写一些替代它的东西?到目前为止,我一直在使用片刻,因为我不想担心夏令时调整等问题。
答案 0 :(得分:0)
看起来片刻确实处理了这个问题,相当简单;您只需添加format for parsing:
monthMoment = moment("august 2015", "MMMM YYYY");