使用Ajax读取JSON数据的方法如下:
var xhr = new XMLHttpRequest();
xhr.open('GET', 'data.json', true);
xhr.responseType = 'json';
xhr.onreadystatechange = function() {
if (xhr.readyState === XMLHttpRequest.DONE) {
if (xhr.status === 200) {
// 请求成功,处理返回的JSON数据
var jsonData = xhr.response;
console.log(jsonData);
} else {
// 请求失败
console.error('请求失败');
}
}
};
xhr.send();
在请求成功后,可以通过xhr.response
获取返回的JSON数据。