// 現在の日付を取得 let now = new Date(); // クーポンの有効期限を設定(現在の日付から3日後) let expiryDate = new Date(); expiryDate.setDate(now.getDate() + 3); // 日付を yyyy/mm/dd 形式にフォーマット function formatDate(date) { let year = date.getFullYear(); let month = ("0" + (date.getMonth() + 1)).slice(-2); // マンスは0から始まるため、1を加える let day = ("0" + date.getDate()).slice(-2); return year + "年" + month + "月" + day + "日"; } // クーポンメッセージを作成 let couponMessage = "本日" + formatDate(now) + "から3日間、期間限定*無料診断PDFでお届け 有効期限" + formatDate(expiryDate) + "まで"; // メッセージを表示 document.getElementById("coupon").innerText = couponMessage;

© 2024 ワンランク上の5つ星のWeb接客で集客