使用XMLHttpRequest对象发送AJAX请求获取JSON数据的方法如下:
var xhr = new XMLHttpRequest();
xhr.open("GET", "http://example.com/data.json", true);
xhr.setRequestHeader("Content-Type", "application/json");
xhr.onload = function() {
if (xhr.status === 200) {
var jsonData = JSON.parse(xhr.responseText);
// 处理JSON数据
}
};
xhr.send();
注意:在以上代码中,需要将请求地址替换为实际的JSON数据地址,并根据需要设置请求头。
另外,也可以使用jQuery库的$.ajax
方法来发送AJAX请求获取JSON数据,用法如下:
$.ajax({
url: "http://example.com/data.json",
type: "GET",
dataType: "json",
success: function(jsonData) {
// 处理JSON数据
}
});
这种方法不需要手动创建XMLHttpRequest对象,而是直接使用jQuery封装好的方法来发送AJAX请求。