会場案内図
セミナー舞台
デジタルトランスフォーメーションと企業成長
概要: このセミナーでは、最新の技術動向について説明します。
開催時間: 10:00 - 11:00
通知を設定
AIと中小企業: 成功事例とその秘訣
概要: このセミナーでは、ビジネスにおける成功事例を紹介します。
開催時間: 13:00 - 14:00
通知を設定
サステナビリティと企業戦略
概要: このセミナーでは、マーケティングの最新トレンドについて解説します。
開催時間: 15:00 - 16:00
通知を設定
document.querySelectorAll('.apply-btn').forEach(button => {
button.addEventListener('click', async function() {
// ユーザーが通知を許可しているか確認
const permission = await Notification.requestPermission();
if (permission === "granted") {
const seminarTitle = this.parentElement.querySelector('h3').innerText;
const seminarTime = this.parentElement.querySelector('p').innerText;
// サーバーにデータ送信(セミナー情報と通知設定のリクエスト)
fetch('/set-notification', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
title: seminarTitle,
time: seminarTime
})
});
// 通知確認メッセージ
alert(seminarTitle + 'の通知が設定されました。');
} else {
alert('通知が許可されていません。ブラウザの設定を確認してください。');
}
});
});