AJAX 简单的GET请求(W3Cschool)

前端之家收集整理的这篇文章主要介绍了AJAX 简单的GET请求(W3Cschool)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

function loadXMLDoc(){
var xmlhttp ;
if(window.XMLHttpRequest){
XMLHttp = new XMLHttpRequst();
}
eles{
XMLHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
//创建对象
xmlhttp.onreadystatechang = function(){
//每次readyState发生改变时调用onreadystatechang函数

if(xmlhttp.readyState == 4 && xmlhttp.status == 200)

//readyState存储着XMLHttpRequest的状态。
//readyState有4个状态值
//status状态码

{ 
  document.getElementById("myDiv").

innerHTML = xmlhttp.responseText;

}

//responseText作为响应主体被返回的文本}xmlhttp.open("GET","url",true);xmlhttp.send();//open()方法语法:open(method,url,async)method:请求类型(get或post)url:文件在服务器上的位置async:是否异步处理请求(true或false)//open()方法是发送请求中的配置//send()方法发送请求//send()方法中的参数:如果使用的是get,则无参数或为null。例:send()或send(null)如果使用的是post,则参数为要发送的数据。}

原文链接:https://www.f2er.com/ajax/160721.html

猜你在找的Ajax相关文章