實(shí)時(shí)更新,把握比賽動(dòng)態(tài)
script.js
javascript
const matches = document.querySelectorAll('.match');function updateScores() {// 從服務(wù)器獲取最新比分const scores = getScoresFromServer();// 更新頁(yè)面上的比分for (let i = 0; i < matches.length; i++) {const match = matches[i];const score = scores[i];match.querySelector('.score span:first-child').textContent = score[0];match.querySelector('.score span:last-child').textContent = score[1];}
}// 每隔一段時(shí)間更新比分
setInterval(updateScores, 30000);