
<style>
body {font-family: Arial, sans-serif;font-size: 14px;line-height: 1.5;}table {border-collapse: collapse;width: 100%;matches">
| 主队 | 比分 | 客队 | 赛程 | 结果 |
|---|
| 皇马 | 3 - 1 | 尤文图斯 | 2023-03-01 | 皇马获胜 |
| 巴黎圣日耳曼 | 4 - 2 | 拜仁慕尼黑 | 2023-02-28 | 巴黎圣日耳曼获胜 |
match => {const row = document.getElementById(`finished-match-${match.id}`);if (row) {row.innerHTML = `${match.homeTeam} | ${match.score.home} - ${match.score.away} | ${match.awayTeam} | ${match.date} | ${match.winner ? match.winner : "平局"} | `;}});}).catch(error => {console.error(error);alert("无法获取实时数据。请稍后重试。");});}// 每 10 秒更新一次数据setInterval(updateData, 10000);// 初次加载时更新数据updateData();</script>