如何使用jQuery獲得整月時間段?下面是代碼示例:
// 獲取當前日期 var currentDate = new Date(); // 獲取當前月份的第一天 var firstDayOfMonth = new Date(currentDate.getFullYear(), currentDate.getMonth(), 1); // 獲取下個月的第一天,然后減一天,獲取當前月份的最后一天 var lastDayOfMonth = new Date(currentDate.getFullYear(), currentDate.getMonth() + 1, 1); lastDayOfMonth.setDate(lastDayOfMonth.getDate() - 1); // 將日期轉換成字符串 var firstDay = firstDayOfMonth.getFullYear() + "-" + (firstDayOfMonth.getMonth() + 1) + "-" + firstDayOfMonth.getDate(); var lastDay = lastDayOfMonth.getFullYear() + "-" + (lastDayOfMonth.getMonth() + 1) + "-" + lastDayOfMonth.getDate(); // 輸出結果 console.log("當前月份的第一天:" + firstDay); console.log("當前月份的最后一天:" + lastDay);
以上代碼將獲取當前月份的第一天和最后一天,并將其轉換成字符串格式,方便使用。
可以根據需要修改代碼,例如將當前日期替換成指定日期,或將獲取月份改為獲取其他時間段。