體育界最新風(fēng)云:實(shí)時(shí)更新的今日新聞報(bào)道
來(lái)源:24直播網(wǎng)
歡迎來(lái)到我們體育新聞直播博客,在這里我們會(huì)為您提供體育界最新動(dòng)態(tài)的實(shí)時(shí)報(bào)道。
<script> // 定期輪詢服務(wù)器獲取最新新聞更新setInterval(function() {var xhr = new XMLHttpRequest();xhr.open("GET", "sports-news-updates.php");xhr.onload = function() {if (xhr.status === 200) {var updates = JSON.parse(xhr.responseText);if (updates.length > 0) {// 有新更新,在頁(yè)面上顯示它們for (var i = 0; i < updates.length; i++) {var update= updates[i];var newsItem = document.createElement("p");newsItem.innerText = update.title + " - " + update.body;document.getElementById("news-updates").appendChild(newsItem);}}}};xhr.send();}, 5000); // 每5秒輪詢一次 </script>