手机捷报比分,即时比分更新,让你不错过任何精彩瞬间。
<script>
async function getRealTimeScores() {const response = await fetch('https://api.mobilelivescores.com/v2/fixtures/live.json?authorization=YOUR_API_KEY');
const data = await response.json();const matchList = document.querySelector('.match-list');data.fixtures.map(match => {const matchItem = document.createElement('div');matchItem.classList.add('match-item');const matchInfo = document.createElement('div');matchInfo.classList.add('match-info');const homeTeamName = document.createElement('div');homeTeamName.classList.add('team-name');homeTeamName.textContent = match.homeTeam.name;const awayTeamName = document.createElement('div');awayTeamName.classList.add('team-name');awayTeamName.textContent = match.awayTeam.name;const score = document.createElement('div');score.classList.add('score');score.textContent = `${match.goals.home} - ${match.goals.away}`;const time = document.createElement('div');time.classList.add('time');time.textContent = match.status;matchInfo.appendChild(homeTeamName);matchInfo.appendChild(awayTeamName);matchInfo.appendChild(score);matchInfo.appendChild(time);matchItem.appendChild(matchInfo);matchList.appendChild(matchItem);});}getRealTimeScores();
</script>