當前時間,本週,本月,本年的時間範圍獲取

2021-08-21 11:41:47 字數 1076 閱讀 4051

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( );//獲取日期與時間

},},

},

本週,本月,本年的起始時間戳

本週的起始時間戳 當前日期 sdefaultdate date y m d first 1 表示每週星期一為開始日期 0表示每週日為開始日期 first 1 獲取當前周的第幾天 週日是0 周一到週六是 1 6 w date w strtotime sdefaultdate 本週開始時間 begin ...

獲取 當前時間 本週,本月,本季度,本年的起始時間

因為專案中需要用時間作為條件進行統計,所以需要獲取 當前時間 本週,本月,本季度,本年的起始時間,如下 1 region 獲取 本週 本月 本季度 本年 的開始時間或結束時間 2 3 統計時間型別 4 5public enum enumtimetype612 13 獲取結束時間 14 15 week...

TP 時間查詢(當日 本週 本月 本年)

1 按照日期查詢類似於當日 本週 本月 本年的資料 獲取當日的資料 db table table wheretime times today select 獲取昨天的資料 db table table wheretime times yesterday select 獲取本週的資料 db table...