const buyNowButton = document.querySelector('.buy-now'); const dialog = document.getElementById('buy-dialog'); const closeDialogButton = document.getElementById('close-dialog'); // Hiển thị dialog khi bấm nút buyNowButton.addEventListener('click', () => { dialog.style.display = 'flex'; }); // Đóng dialog khi bấm nút đóng closeDialogButton.addEventListener('click', () => { dialog.style.display = 'none'; }); // Lấy ngày hiện tại const currentDate = new Date(); // Lấy tháng và năm const currentMonth = currentDate.getMonth() + 1; // Tháng bắt đầu từ 0 (0-11), nên cộng thêm 1 const currentYear = currentDate.getFullYear(); // Cập nhật vào HTML document.getElementById('month').textContent = currentMonth; document.getElementById('year').textContent = currentYear;