js 日期轉換 strToDate

2022-07-29 03:42:15 字數 1129 閱讀 3899

//定義日期字串

var mystartstr = 「2015-05-04 17:10:10」

var myendstr = 「2015-05-04 17:10:10」

var mystartdate = new date(date.parse(mystartstr.replace(/-/g, "/")));

var myenddate = new date(date.parse(myendstr.replace(/-/g, "/")));

//js判斷日期範圍

var currdate = new date();

if(currdatemyenddate)

//日期的操作:

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

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

mystrdate.getmonth(); //獲取當前月份(0-11,0代表1月)

mystrdate.getdate(); //獲取當前日(1-31)

mystrdate.getday(); //獲取當前星期x(0-6,0代表星期天)

mystrdate.gettime(); //獲取當前時間(從1970.1.1開始的毫秒數)

mystrdate.gethours(); //獲取當前小時數(0-23)

mystrdate.getminutes(); //獲取當前分鐘數(0-59)

mystrdate.getseconds(); //獲取當前秒數(0-59)

mystrdate.getmilliseconds(); //獲取當前毫秒數(0-999)

mystrdate.tolocaledatestring(); //獲取當前日期 2015/5/4

var mytime=mystrdate .tolocaletimestring(); //獲取當前時間 下午5:10:47

mystrdate .tolocalestring( ); //獲取日期與時間 2015/5/4 下午5:10:47

js日期轉換

標準日期轉常用日期格式 時間戳轉標準日期 時間戳轉常用日期 明天的日期 常用日期格式 var nowdate newdate var nowtime newdate gettime 月份是0 11,所以要在後面 1 var nowdate newdate var nowyear nowdate.ge...

js日期轉換

手上有個工具,需要選擇日期和時間以及時區,然後通過選擇的日期時間和時區去伺服器查詢日誌,因為使用工具的人可能在不同時區,伺服器也可能在不同時區,所以同一使用utc時間進行傳輸。然後在客戶端和伺服器根據情況進行時區轉換。於是有了下面這個根據字串指定時區的時間函式。time 2020 01 01 00 ...

js日期格式轉換

var d new date var str d.getfullyear d.getmonth 1 d.getdate alert str var mydate new date mydate.getyear 獲取當前年份 2位 mydate.getfullyear 獲取完整的年份 4位,1970 ...