js 獲取當月天數

2021-07-09 10:50:17 字數 617 閱讀 3841

vardate1 = moment().format("yyyy");

vardate2= moment().format("mm");

varnum =newdate(parseint(date1),

parseint(date2),

0).getdate();

vardate1 =newdate().getfullyear();

vardate2=newdate().getmonth();

varnum =newdate(date1,date2,

0).getdate();

試了一下 第三個要傳入0  其他的好像都不行 待驗證。。。 另外用moment轉過來的時間格式不行  moment獲取的是字串  js原生的要傳入整數 字串不行

計算當月天數

let dayarr let date newdate this.year date.getyear this.month date.getmonth 1 當月第一天星期幾 let firstday newdate this.year this.month 1 1 getday 當月天數 個月天數,...

ORACLE根據日期獲取當月的天數

create or replace function get days p date date return number authid current user asp days number 0 begin select to date to char add months p date,1 y...

SQL獲取當月天數的幾種方法

原文 sql獲取當月天數的幾種方法 日期直接減去int型別的數字 等於 dateadd day,數字,日期 下面三種方法 1,日期加乙個月減去當前天數,相當於這個月最後一天的日期。然後獲取天數。注意,不能用這種方式 當前日期減去當前天數,再加乙個月,新日期不一定是當前月的最後一天的日期。比如當前月是...