Skip to content

Instantly share code, notes, and snippets.

@Alex-xd
Created January 13, 2017 08:24
Show Gist options
  • Save Alex-xd/c621217a4d26e3b086bc322bb54beadb to your computer and use it in GitHub Desktop.
Save Alex-xd/c621217a4d26e3b086bc322bb54beadb to your computer and use it in GitHub Desktop.
//2.处理毫秒级的时间
$.extend({
handleTime:function(times){
var nowTime = new Date(times),
year = nowTime.getFullYear(),
month = nowTime.getMonth(),
day = nowTime.getDate();
return year+'.'+month+"."+day;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment