js計算指定時間所在周 月 季度 半年 全年

2021-09-07 03:31:06 字數 1018 閱讀 8792

//獲取指定日期wherethetime的所在周、月、季度、半年、全年

//type為1:周,2:月,3:季度,4:半年,5:全年

function computtimehorizon(wherethetime,type)

break;

case 4://半年

var startmonth = 0;

var endmonth = 0;

if(month < 7)else

//獲取第一天

var fristday = new date(year,1,1);

//獲取最後一天

var lastday = new date(year,6,0);

var beginwherethetime = year + "-" + formatdate(startmonth) + "-" + formatdate(fristday.getdate());

var endwherethetime = year + "-" + formatdate(endmonth) + "-" + formatdate(lastday.getdate());

break;

case 5://全年

var beginwherethetime = year + "-01-01";

var endwherethetime = year + "-12-31";

break;

}}

//獲取指定日期所在周周一

function getmondayandsunday(dd)

//格式化月和日為mm、dd

function formatdate(value)

return value;

}//獲取當前月所在季度的開始月

function getquarterstartmonth(month)

if(39)

return quarterstartmonth;

}

PHP carbon 計算當前時間與指定時間差

專案中有計算當前時間與指定時間差的需求,記錄下實現 date 2020 11 11 12 59 59 carbon carbon parse date 格式化乙個時間日期字串為 carbon 物件 int new carbon diffinseconds carbon,false int 為正負數 ...

js 獲取指定時區當前時間

var timezone 8 目標時區時間,東八區 東時區正數 西市區負數 var offset gmt new date gettimezoneoffset 本地時間和格林威治的時間差,單位為分鐘 var nowdate new date gettime 本地時間距 1970 年 1 月 1 日午...

js寫的指定時間倒計時

倒計時 三個引數 小時 分鐘 秒 var hour 01 var m 01 var s 05 function time hh,mm,ss else else if hh 10 hh length 1 if mm 10 mm length 1 ss substr 0,1 0 之前測試用的 if ss...