赛事列表
- 欧冠联赛
- 欧罗巴联赛
- 英格兰足球超级联赛
- 西班牙足球甲级联赛
-
比赛时间主队比分客队2023-03-16 19:45阿森纳0-1葡萄牙体育2023-03-16 19:45巴塞罗那2-1加拉塔萨雷
英格兰足球超级联赛
比赛时间 主队 比分 客队 2023-03-11 18:30 曼联 2-0 纽卡斯尔联 2023-03-12 15:00 利物浦 1-0 埃弗顿 西班牙足球甲级联赛
比赛时间 主队 比分 客 比赛时间 主队 比分 客队 2023-03-12 18:00 AC米兰 1-0 罗马 2023-03-13 20:45 尤文图斯 2-0 拉齐奥 德国足球甲级联赛
比赛时间 主队 比分 客队 2023-03-11 15:30 拜仁慕尼黑 3-0 多特蒙德 2023-03-12 18:00 RB莱比锡 1-0 柏林联合 法国足球甲级联赛
scores = getLatestScores();// Update the scores on the pageupdateScores(scores);}, 60000);// Function to get the latest scores from the serverfunction getLatestScores() {// Make a request to the servervar request = new XMLHttpRequest();request.open("GET", "/latest-scores", true);request.send();// Parse the response from the servervar response = JSON.parse(request.responseText);// Return the latest scoresreturn response.scores;}// Function to update the scores on the pagefunction updateScores(scores) {// Loop through the scoresfor (var i = 0; i < scores.length; i++) {// Get the score for the matchvar score = scores[i];// Find the table row for the matchvar row = document.querySelector("table " + score.matchId);// Update the score in the table rowrow.children[2].innerHTML = score.homeGoals + "-" + score.awayGoals;}}比赛时间 主队 比分 客队 2023-03-11 21:00 巴黎圣日耳曼 2-1 马赛 2023-03-12 19:00 摩纳哥



