Skip to content

Instantly share code, notes, and snippets.

@Alex-xd
Created January 13, 2017 08:33
Show Gist options
  • Save Alex-xd/034458400b947fff7b80ff692686755d to your computer and use it in GitHub Desktop.
Save Alex-xd/034458400b947fff7b80ff692686755d to your computer and use it in GitHub Desktop.
处理毫秒级时间
// 处理毫秒级的时间
handleTime: function (times) {
var t = new Date(times);
return t.getFullYear() + '年' + (t.getMonth() + 1) + '月' + t.getDate() + '日 ' + t.toTimeString().slice(0, 5)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment