strDate = "0" + strDate;
var currentDate = date.getFullYear() + '年' + month + '月' + strDate + '日';
return currentDate;
var year = d.getFullYear();
var month = change(d.getMonth() + 1);
var day = change(d.getDate());
var hour = change(d.get...
Many applications you build will have some sort of a date component, whether it's the creation date of a resource, or the timestamp of an activity. 您构建的许多应用程序都会具有某种
日期
组件,无论是资源的创建
日期
还是活动的时间戳。
Dealing w...
var date = new Date();
date .getYear(); //
获取
当前
年份(2位)
date .getFullYear(); //
获取
完整的年份(4位)
date .getMonth(); //
获取
当前
月份(0-11,0代表1月)
date .getDate(); //
获取
当前
日(1-31)
date .getDay(); //
获取
当前
星期X(0-6,0代表星期天)
date...