即時足球比分預警:隨時掌握比賽最新動態,不錯過任何精彩時刻

歡迎比賽時間const matchTime = document.createElement('span');matchTime.classList.add('match-time');matchTime.textContent = match.time;// 添加到比賽信息中matchInfo.appendChild(matchTeam1);matchInfo.appendChild(matchScore);matchInfo.appendChild(matchTeam2);// 創建比賽控制按鈕const matchControls = document.createElement('div');matchControls.classList.add('match-controls');// 創建提醒按鈕const matchRemindButton = document.createElement('button');matchRemindButton.classList.add('match-button');matchRemindButton.textContent = '提醒我';// 創建直播按鈕const matchLiveButton = document.createElement('button');matchLiveButton.classList.add('match-button');matchLiveButton.textContent = '直播';// 添加到比賽控制按鈕中matchControls.appendChild(matchRemindButton);matchControls.appendChild(matchLiveButton);// 添加到比賽容器中matchContainer.appendChild(matchTitle);matchContainer.appendChild(matchInfo);matchContainer.appendChild(matchControls);// 添加到比賽列表中matchesContainer.appendChild(matchContainer);});