我有一個頁面videos.php,它通過Ajax加載視頻源。在php ajax頁面video_feed_ajax.php中,它通過一個數組查看每個視頻的對象。然而,目前我寫JS的方式,只有當它的完整加載(當它遍歷整個數組時)才顯示video_feed_ajax.php。 - >有沒有辦法顯示video_feed_ajax.php每次它通過循環,所以視頻顯示,因爲它循環而不是在最後?PHP/JS Ajax - 通過數組循環顯示PHP頁面
xmlhttp.onreadystatechange=stateChangedUsersAddVideoFeed;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
function stateChangedUsersAddVideoFeed()
{
document.getElementById("add_video_feed").innerHTML=xmlhttp.responseText;
document.getElementById('add_video_feed_load_img').style.display='none';
}