<script type="text/javascript">
1、创建异步对象
var xhr=new XMLHTTPRequest()
2、xhr.open设置请求行
xhr.open(‘get/post’,url请求的地址)
get参数使用 ?平拼接在后面
post参数不用拼接
xhr.open("get",'/news.php?username='+name);
3、xhr.setRequestHeader()设置请求头
get不需要设置请求头
post需要设置
xhr.setrequestHeader("content-type","application/x-www-form-urlencoded")
4、xhr.send设置请求参数
get不需要在这里写 只需写null
post需要在send写
xhr.send('key1=value1&key2=value2')
5、监听响应成功的函数
xhr.onreadystatechange=function(){
if(xhr.status==200&&xhr.readyState==4){
console.log(xhr.responseText);
document.querySelect(".show").innerHTML=xhr.responseText;
}
}