Open zhh10 opened 4 years ago
var xhr = new XMLHttpRequest() //创建发送请求的对象 xhr.onreadystatechange = function(){ // 当请求状态发生改变时运行的函数 // 0: 刚刚创建好了请求对象,但还未配置请求(未调用open方法) // 1: open方法已被调用 // 2: send方法已被调用 // 3: 正在接收服务器的响应消息体 // 4: 服务器响应的所有内容均已接收完毕 // xhr.responseText: 获取服务器响应的消息体文本 // xhr.getResponseHeader("Content-Type") 获取响应头Content-Type } xhr.setRequestHeader('Content-Type','application/json') //设置请求头 xhr.open('请求方法','URL地址') //配置请求 xhr.send('请求体内容') //构建请求体 发送到服务器
1. 在浏览器地址栏中输入一个页面地址,按下回车键发生了什么?
2. AJAX请求
3. get和post的区别