var xhr = new XMLHttpRequest(); xhr.open('GET', 'get-article.php', true); xhr.onload = function() { if (this.status === 200) { document.getElementById('article-content').innerHTML = this.responseText; // 發(fā)起第二個Ajax請求獲取評論數 var xhr2 = new XMLHttpRequest(); xhr2.open('GET', 'get-comment-count.php', true); xhr2.onload = function() { if (this.status === 200) { document.getElementById('comment-count').innerHTML = this.responseText; } }; xhr2.send(); } }; xhr.send();在這個示例中,我們首先通過Ajax請求獲取到文章內容,并將其替換到`
`中。然后,我們發(fā)起第二個Ajax請求來獲取評論數,并將其插入到網頁中一個有特定id(例如``)的元素中。
通過以上的示例和說明,你已經了解到了如何使用Ajax中成功返回的值來替換到表格中的文章。這種技術可以幫助我們實現動態(tài)的網頁內容更新,提升用戶體驗。希望這篇文章對你有所幫助!