//獲取當前時間,格式yyyy-mm-dd
function getnowformatdate()
if (strdate >= 0 && strdate <= 9)
var currentdate = year + seperator1 + month + seperator1 + strdate;
return currentdate;
}
獲取當前的日期時間 格式「yyyy-mm-dd hh:mm:ss」
function getnowformatdate()
if
(strdate >= 0 && strdate <= 9)
var
currentdate = date.getfullyear() + seperator1 + month + seperator1 + strdate
+
" "
+ date.gethours() + seperator2 + date.getminutes()
+ seperator2 + date.getseconds();
return
currentdate;
}
1.
dateformat dateformat=new ******dateformat("yyyy-mm-dd");
calendar calendar=calendar.getinstance();
calendar.set(calendar.hore_of_day,-24);
string yesterdaydate=dateformat.format(calendar.gettime());
注意不要用calendar_hore,這是12小時制,calendar_hore_of_day是 24小時制。
2. 個人感覺下邊的更形象一些
date d=new date(system.currenttimemillis()-1000*60*60*24);
******dateformat sp=new ******dateformat("yyyy-mm-dd");
string zuotian=sp.format(d);//獲取昨天日期
據說下邊這個是存在錯誤情況的, 一會進行驗證
dateformat dateformat=new ******dateformat("yyyy-mm-dd");
calendar calendar=calendar.getinstance();
calendar.set(calendar.date,-1);
string yesterdaydate=dateformat.format(calendar.gettime());
Js獲取當前日期時間
var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 mydate.get...
JS獲取當前日期時間
var mydate new date var years mydate.getfullyear 從date 物件以四位數字返回年份 var months mydate.getmonth 從date 物件返回月份 0 11 var days mydate.getdate 從date物件返回乙個月中的...
Js獲取當前日期時間
var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 mydate.getmonth 獲取當前月份 0 11,0代表1月 mydate.getdate 獲取當前日 1 31 mydate.get...