当前位置:

闪电般评分,火热足球捷报:实时更新,战况尽在掌握

来源:24直播网
实时更新

关注实时足球比赛战况,获取闪电般评分,不错过任何精彩瞬间!

<script> const socket = new WebSocket('ws://localhost:8080');socket.onopen = () => {console.log('WebSocket connection established!');};socket.onmessage = (event) => {// 解析收到的 JSON 数据const data = JSON.parse(event.data);// 更新表格数据const row = document.createElement('tr');const homeTeam = document.createElement('td');homeTeam.textContent = data.homeTeam;row.appendChild(homeTeam);const awayTeam = document.createElement('td');awayTeam.textContent = data.awayTeam;row.appendChild(awayTeam);const score = document.createElement('td');score.textContent = `${data.homeScore} - ${data.awayScore}`;row.appendChild(score);const time = document.createElement('td');time.textContent = data.time;row.appendChild(time);const tableBody = document.querySelector('tbody'); tableBody.appendChild(row);};socket.onclose = () => {console.log('WebSocket connection closed.');}; </script>
主队 客队 比分 时间