jQuery Calendar 農歷,是一種基于 jQuery 的插件,提供農歷日期的轉換和顯示功能。通過引入該插件,用戶可以在網頁中方便地顯示農歷日期,以便更好地滿足業務需求。
// 引入 jQuery 和 Calendar 插件 <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/lunar-calendar/LunarCalendar.js"></script> // 創建 Calendar 實例 var cal = new LunarCalendar(); // 獲取農歷年月日 var today = new Date(); // 獲取當前日期時間 var year = today.getFullYear(); // 獲取年份 var month = today.getMonth() + 1; // 獲取月份(0-11),需要加1 var day = today.getDate(); // 獲取日期 var lunarDate = cal.solarToLunar(year, month, day); // 將當前日期轉換為農歷日期 var lunarYear = lunarDate.lunarYear; // 獲取農歷年份 var lunarMonth = lunarDate.lunarMonth; // 獲取農歷月份 var lunarDay = lunarDate.lunarDay; // 獲取農歷日期 // 顯示農歷日期 $("#lunar-date").text(lunarYear + "年" + lunarMonth + "月" + lunarDay + "日");
上述代碼中,首先需要引入 jQuery 和 Calendar 插件,然后創建 Calendar 實例。通過調用實例的 solarToLunar 方法,將當前日期轉換為農歷日期,并獲取其中的年月日。最后,通過 jQuery 的 text 方法,將轉換后的農歷日期顯示在頁面上。