javascript時間戳和日期字串相互轉換

2021-07-25 08:46:07 字數 1045 閱讀 6845

js中獲得當前時間是年份和月份,形如:201208

//獲取完整的日期

var date=new date;

var year=date.getfullyear(); 

var month=date.getmonth()+1;

month =(month<10 ? "0"+month:month); 

var mydate = (year.tostring()+month.tostring());

注意,year.tostring()+month.tostring()不能寫成year+month。不然如果月份大於等於10,則月份為數字,會和年份相加,如201210,則會變為2022,需要加.tostring()

以下是搜到的有用內容:

var mydate = new date();

mydate.getyear(); //獲取當前年份(2位)

mydate.getfullyear(); //獲取完整的年份(4位,1970-????)

mydate.getmonth(); //獲取當前月份(0-11,0代表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( ); //獲取日期與時間

JavaScript時間戳與時間Date之前的轉換

gettime 方法 得到的是毫秒單位 秒的話 1000就可以了 這裡介紹幾個我常用的 tolocaledatestring 獲得日期 tolocaletimestring 獲得時間 tolocalestring chinese 獲得日期時間 時間是24小時制 tolocalestring 獲得日期...

常見的Javascript獲取時間戳

最近在做專案的時候,發現獲取時間戳的需求挺多的,通常是在做日期選擇的時候,要拿開始時間和結束時間的時間戳。每次都得google一下,還不如自己搞一搞!new date 通常會有這樣的需求,就是檢視今天的資料,那麼就需要獲取今天0點和24點的時間戳,可以通過sethours函式來進行操作 let ti...

javascript時間戳和日期字串相互轉換

獲取某個時間格式的時間戳 var stringtime 2014 07 10 10 21 12 var timestamp2 date.parse new date stringtime timestamp2 timestamp2 1000 2014 07 10 10 21 12的時間戳為 1404...