取得一個月的天數的方法
P粉354948724
P粉354948724 2023-08-25 13:55:10
0
2
587
<p>我製作了一個倒數計時器,需要獲取一個月的天數並減去已經過去的天數(例如:九月的30天減去8天 - 今天的日期)。 現在我需要手動輸入:</p> <pre class="brush:php;toolbar:false;">const end = new Date(2021, 8, 30, 13, 0,12, 12);</pre></p>
P粉354948724
P粉354948724

全部回覆(2)
P粉916553895

您可以使用以下程式碼取得一個月的天數:

const getDays = (year, month) => new Date(year, month, 0).getDate()

const days = getDays(2021, 8)
console.log(days)
P粉792673958

本月剩餘天數

var currentDate = new Date();
var currentYear = currentDate.getFullYear();
var currentMonth = currentDate.getMonth();

var currentMonthLastDate = (new Date(currentYear, currentMonth, 0)).getDate();

var daysLeftInMonth = currentMonthLastDate - currentDate.getDate();

console.log(daysLeftInMonth);
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板