return httpRequest;
}
window.createXMLHttpRequest = createXMLHttpRequest;
})();
将创建核心对象的代码写入某个js...xhr.open(method, url)
xhrReq.open(method, url, async);
xhrReq.open(method, url, async, user);
xhrReq.open...(method, url, async, user, password);
但通常我们只会用第一种,其他三种可以参考MDN
这里我们以一言接口为例,演示GET请求。...可以看到,刚刚的数据已经变成了一个js的对象。我们只需要将这个对象取出来,进行处理即可。...JS_ajax.html)
<!