欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

如何实现AJAX请求?

程序员文章站 2022-03-13 12:49:36
...

如何实现AJAX请求?

如何实现AJAX请求?

1、创建XMLHttpRequest实例;

var xhr;if(window.XMLHttpRequest) {
  //ie7+,firefox,chrome,safari,opera
  xhr = new XMLHttpRequest();}else {
  //ie5,ie6
  xhr = new ActiveXObject("Microsoft.XMLHTTP");}

2、监听readystatechange事件,并通过readyState属性来判断请求状态;

xhr.onreadystatechange = function() {
  if(xhr.readyState==4 && xhr.status==200) {
    console.log(xhr.responseText);
  }}

3、调用open()方法指定请求类型和地址;

xhr.open("GET", "xhr_info.txt");

4、调用send()方法发送请求即可。

xhr.send(null);

完整代码

var xhr;
if(window.XMLHttpRequest) {
  //ie7+,firefox,chrome,safari,opera
  xhr = new XMLHttpRequest();
} else {
  //ie5,ie6
  xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
xhr.onreadystatechange = function() {
  if(xhr.readyState==4 && xhr.status==200) {
    console.log(xhr.responseText);
  }
}
xhr.open("GET", "xhr_info.txt", true);
xhr.send(null);

推荐教程:《JS教程

以上就是如何实现AJAX请求?的详细内容,更多请关注其它相关文章!

相关标签: ajax js