var mydate = new date();
mydate.getyear(); //獲取當前年份(2位)
mydate.getfullyear(); //獲取完整的年份(4位,1970-???)
mydate.getmonth(); //獲取當前月份(0-11,0代表1月) // 所以獲取當前月份是mydate.getmonth()+1;
mydate.getdate(); //獲取當前日(1-31)
mydate.getday(); //獲取當前星期x(0-6,0代表星期天)
mydate.gettime(); //獲取當前時間(從1970.1.1開始的毫秒數)
mydate.gethours(); //獲取當前小時數(0-23)
mydate.getminutes(); //獲取當前分鐘數(0-59)
mydate.getseconds(); //獲取當前秒數(0-59)
mydate.getmilliseconds(); //獲取當前毫秒數(0-999)
mydate.tolocaledatestring(); //獲取當前日期
var mytime=mydate.tolocaletimestring(); //獲取當前時間
mydate.tolocalestring( ); //獲取日期與時間
前3個月
var date1 = new date();
date1.setmonth(date1.getmonth()-2);
var year1=date1.getfullyear();
var month1=date1.getmonth()+1;
month1 =(month1<10 ? 「0」+month1:month1);
sdate = (year1.tostring()+』-』+month1.tostring());
前一天
const date = new date();
date.settime(date.gettime() - 3600 * 1000 * 24);
new Date 物件的格式處理
new date 物件的格式處理 new date year,month,date,hrs,min,sec 可以用 2021 2 18 這種格式 不可以用2021 2 18 date new date 獲取當前時間戳 年 date.getfullyear 月 date.getmonth 1 日 da...
SpringMVC日期格式處理
處理的方式有很多種,可以在前端輸入的時候處理,也可以在後端處理,能力有限,只了解到這兩種,先做記錄,有待補充。如果只是部分用到日期格式,比如定義某個類的字段,可以直接使用註解方式,簡單方便,沒有過多操作。例如 datetimeformat pattern yyyy mm dd private dat...
extjs日期格式處理
extjs 的datefield,往後台傳值,接收的是thu sep 2 00 00 00 utc 0800 2010,而我想要的是2010 09 02。ext.getcmp id getvalue.format y m d 轉換 extjs往後台傳值 datefield配置 format y m ...