如何实现AJAX请求?-LMLPHP

如何实现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);
登录后复制

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

08-19 11:38