要使用Ajax獲取JSON數(shù)據(jù)并顯示,可以按照以下步驟進行操作:
var xhr = new XMLHttpRequest();
xhr.open('GET', 'url_to_json_data', true);
xhr.responseType = 'json';
xhr.onload = function() {
if (xhr.status === 200) {
var jsonResponse = xhr.response;
// 處理JSON數(shù)據(jù)并顯示
}
};
xhr.send();
在請求成功并獲取到JSON數(shù)據(jù)后,可以通過xhr.response
屬性獲取到JSON對象,然后根據(jù)需求進行數(shù)據(jù)處理和顯示操作。
注意:上述代碼中的url_to_json_data
應(yīng)替換為實際的JSON數(shù)據(jù)URL。另外,還可以在xhr.send()
之前添加必要的請求頭信息、請求參數(shù)等。